summaryrefslogtreecommitdiff
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* Issue #18783: Removed existing mentions of Python long type in docstrings,Serhiy Storchaka2013-08-278-29/+28
|\
| * Issue #18783: Removed existing mentions of Python long type in docstrings,Serhiy Storchaka2013-08-278-29/+28
* | Close #11619: The parser and the import machinery do not encode UnicodeVictor Stinner2013-08-262-22/+37
* | #18803: merge with 3.3.Ezio Melotti2013-08-261-1/+1
|\ \ | |/
| * #18803: fix more typos. Patch by Févry Thibault.Ezio Melotti2013-08-261-1/+1
* | Merge.Charles-François Natali2013-08-251-11/+12
|\ \ | |/
| * Merge.Charles-François Natali2013-08-251-11/+12
| |\
| | * Issue #18763: subprocess: The file descriptors are now closed after calling theCharles-François Natali2013-08-251-11/+12
* | | Issue #11973: Fix a problem in kevent. The flags and fflags fields are nowChristian Heimes2013-08-251-1/+1
|\ \ \ | |/ /
| * | Issue #11973: Fix a problem in kevent. The flags and fflags fields are nowChristian Heimes2013-08-251-1/+1
* | | Issue #18747: Fix spelling errors in my commit message and comments,Christian Heimes2013-08-251-2/+2
|\ \ \ | |/ /
| * | Issue #18747: Fix spelling errors in my commit message and comments,Christian Heimes2013-08-251-2/+2
| |/
* | Fix compiler warning on Windows.Richard Oudkerk2013-08-241-1/+1
* | Use consistent style for else if / elseEli Bendersky2013-08-241-2/+5
* | remove support for compiling on systems without getcwd()Benjamin Peterson2013-08-231-8/+0
* | Issue #16809: Tkinter's splitlist() and split() methods now accept Tcl_ObjSerhiy Storchaka2013-08-221-12/+53
|\ \ | |/
| * Issue #16809: Tkinter's splitlist() and split() methods now accept Tcl_ObjSerhiy Storchaka2013-08-221-12/+53
* | Fix devpoll_dealloc().Richard Oudkerk2013-08-221-1/+1
* | Move definition of devpoll_internal_close() before devpoll_close().Richard Oudkerk2013-08-221-15/+15
* | Fix compilation of select module on Solaris.Richard Oudkerk2013-08-221-1/+1
* | Issue #18747: Use a parent atfork handler instead of a child atfork handler.Christian Heimes2013-08-221-12/+9
|\ \ | |/
| * Issue #18747: Use a parent atfork handler instead of a child atfork handler.Christian Heimes2013-08-221-12/+9
* | Close #18794: Add a fileno() method and a closed attribute to select.devpollVictor Stinner2013-08-221-7/+85
* | Issue #17119: Fixed integer overflows when processing large strings and tuplesSerhiy Storchaka2013-08-211-6/+23
|\ \ | |/
| * Issue #17119: Fixed integer overflows when processing large strings and tuplesSerhiy Storchaka2013-08-211-9/+30
* | Issue #18747: Re-seed OpenSSL's pseudo-random number generator after fork.Christian Heimes2013-08-211-0/+72
|\ \ | |/
| * Issue #18747: Re-seed OpenSSL's pseudo-random number generator after fork.Christian Heimes2013-08-211-0/+72
* | Issue #8865: Concurrent invocation of select.poll.poll() now raises aSerhiy Storchaka2013-08-201-0/+13
|\ \ | |/
| * Issue #8865: Concurrent invocation of select.poll.poll() now raises aSerhiy Storchaka2013-08-201-0/+13
* | Issue #13461: Fix a crash in the TextIOWrapper.tell method on 64-bit platforms.Serhiy Storchaka2013-08-201-1/+1
|\ \ | |/
| * Issue #13461: Fix a crash in the TextIOWrapper.tell method on 64-bit platforms.Serhiy Storchaka2013-08-201-1/+1
* | Issue #18777: The ssl module now uses the new CRYPTO_THREADID API ofChristian Heimes2013-08-191-1/+17
|\ \ | |/
| * Issue #18777: The ssl module now uses the new CRYPTO_THREADID API ofChristian Heimes2013-08-191-1/+17
* | Issue #18774: Remove last bits of GNU PTH thread code, patch by Vajrasky Kok.Christian Heimes2013-08-181-12/+0
* | Issue #16105: When a signal handler fails to write to the file descriptor reg...Antoine Pitrou2013-08-171-1/+17
* | Issue 18768: Correct doc string of RAND_edg(). Patch by Vajrasky Kok.Christian Heimes2013-08-171-1/+1
|\ \ | |/
| * Issue 18768: Correct doc string of RAND_edg(). Patch by Vajrasky Kok.Christian Heimes2013-08-171-1/+1
* | Issue #18768: coding style nitpick. Thanks to Vajrasky KokChristian Heimes2013-08-171-1/+1
|\ \ | |/
| * Issue #18768: coding style nitpick. Thanks to Vajrasky KokChristian Heimes2013-08-171-1/+1
* | #18466: merge with 3.3.Ezio Melotti2013-08-173-3/+3
|\ \ | |/
| * #18466: fix more typos. Patch by Févry Thibault.Ezio Melotti2013-08-173-3/+3
* | Issue #18178: Fix ctypes on BSD. dlmalloc.c was compiled twice which broke ma...Christian Heimes2013-08-171-1/+0
|\ \ | |/
| * Issue #18178: Fix ctypes on BSD. dlmalloc.c was compiled twice which broke ma...Christian Heimes2013-08-171-1/+0
* | Issue #18709: Fix CVE-2013-4238. The SSL module now handles NULL bytesChristian Heimes2013-08-171-5/+59
|\ \ | |/
| * Issue #18709: Fix CVE-2013-4238. The SSL module now handles NULL bytesChristian Heimes2013-08-171-5/+59
* | Issue #18701: Remove sqlitecompat.h.Serhiy Storchaka2013-08-171-63/+0
* | Issue #18701: Remove support of old CPython versions (<3.0) from C code.Serhiy Storchaka2013-08-178-45/+2
* | Issue #18673: Add O_TMPFILE to os module. O_TMPFILE requires Linux kernelChristian Heimes2013-08-161-0/+3
* | Replace an overly optimistic assert() in _PyGC_CollectNoFail with a simple gu...Antoine Pitrou2013-08-151-6/+13
* | Change the builtin hash algorithms' names to lower case namesChristian Heimes2013-08-154-6/+6