summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
...
| * Issue #18672: Fixed format specifiers for Py_ssize_t in debugging output inSerhiy Storchaka2013-09-051-14/+23
* | Issue #18709: GCC 4.6 complains that 'v' may be used uninitialized in GEN_EMA...Christian Heimes2013-09-051-1/+1
|\ \ | |/
| * Issue #18709: GCC 4.6 complains that 'v' may be used uninitialized in GEN_EMA...Christian Heimes2013-09-051-1/+1
* | (Merge 3.3) Issue #18909: Fix _tkinter.tkapp.interpaddr() on Windows 64-bit,Victor Stinner2013-09-041-1/+1
|\ \ | |/
| * Issue #18909: Fix _tkinter.tkapp.interpaddr() on Windows 64-bit, don't castVictor Stinner2013-09-041-1/+1
* | Issue #18876: The FileIO.mode attribute now better reflects the actual mode u...Antoine Pitrou2013-09-041-9/+13
|\ \ | |/
| * Issue #18876: The FileIO.mode attribute now better reflects the actual mode u...Antoine Pitrou2013-09-041-10/+13
* | Merge 3.3 into default.Tim Peters2013-09-031-16/+12
|\ \ | |/
| * cwr_next(): move invariants out of loops.Tim Peters2013-09-031-16/+12
* | Issue #18912: Fix indentation in docstringEli Bendersky2013-09-031-4/+4
|\ \ | |/
| * Issue #18912: Fix indentation in docstringEli Bendersky2013-09-031-4/+4
* | Use INADDR_BROADCAST instead of hard-coded value (it's part of POSIX andCharles-François Natali2013-08-311-1/+1
* | select.epoll.fromfd(fd) must be not change the inheritable flag of the fileVictor Stinner2013-08-281-1/+1
* | Get rid of signed/unsigned comparaison in _sre.cVictor Stinner2013-08-281-11/+11
* | _datetimemodule.c: fix the compilation warning "conversion from 'double' toVictor Stinner2013-08-271-1/+1
* | fix a compilation warning in posix_openpty() on "PPC64 AIX 3.x" buildbotVictor Stinner2013-08-271-0/+2
* | (Merge 3.3) Fix compilation of the _sqlite module if threads are disabledVictor Stinner2013-08-271-0/+3
|\ \ | |/
| * Fix compilation of the _sqlite module if threads are disabledVictor Stinner2013-08-271-0/+3
* | Issue #18571: Implementation of the PEP 446: file descriptors and file handlesVictor Stinner2013-08-2711-196/+635
* | 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-251-1/+1
|\ \ | |/
| * #18803: fix more typos. Patch by Févry Thibault.Ezio Melotti2013-08-251-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-241-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-211-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