summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
...
* | | Close #16742: Fix misuse of memory allocations in PyOS_Readline()Victor Stinner2013-10-101-2/+2
* | | mergeRaymond Hettinger2013-10-041-14/+15
|\ \ \ | |/ /
| * | Issue #18594: Make the C code more closely match the pure python code.Raymond Hettinger2013-10-041-14/+15
* | | Issue #19147: merge from 3.3Ned Deily2013-10-021-1/+1
|\ \ \ | |/ /
| * | Issue #19147: Fix docstring for fcntl.flock to refer to correct man section.Ned Deily2013-10-021-1/+1
* | | mergeRaymond Hettinger2013-10-021-18/+23
|\ \ \ | |/ /
| * | Issue #18594: Fix the fallback path in collections.Counter().Raymond Hettinger2013-10-021-18/+23
* | | mergeRaymond Hettinger2013-10-011-1/+15
|\ \ \ | |/ /
| * | Issue #18594: Fix the fast path for collections.Counter().Raymond Hettinger2013-10-011-1/+15
* | | Properly initialize all fields of a SSL object after allocation.Antoine Pitrou2013-09-291-0/+1
|\ \ \ | |/ /
| * | Properly initialize all fields of a SSL object after allocation.Antoine Pitrou2013-09-291-0/+1
| * | Issue #19028: Fixed tkinter.Tkapp.merge() for non-string arguments.Serhiy Storchaka2013-09-231-12/+3
* | | Issue #19095: SSLSocket.getpeercert() now raises ValueError when the SSL hand...Antoine Pitrou2013-09-291-1/+9
* | | Issue #19034: repr() for tkinter.Tcl_Obj now exposes string reperesentation.Serhiy Storchaka2013-09-231-2/+7
* | | Merge headsSerhiy Storchaka2013-09-201-4/+1
|\ \ \
| * \ \ Issue #3015: Fixed tkinter with wantobject=False. Any Tcl command callSerhiy Storchaka2013-09-201-4/+1
| |\ \ \ | | |/ /
| | * | Issue #3015: Fixed tkinter with wantobject=False. Any Tcl command callSerhiy Storchaka2013-09-201-4/+1
* | | | Add a comment making it explicit that itertools.tee() is already 64bit-safe (...Antoine Pitrou2013-09-201-2/+2
|/ / /
* | | - followup for issue #18997, make _clear_joined_ptr static.doko@ubuntu.com2013-09-181-1/+1
|\ \ \ | |/ /
| * | - followup for issue #18997, make _clear_joined_ptr static.doko@ubuntu.com2013-09-181-1/+1
* | | Issue #16201: socket: Use inet_pton()/inet_addr() instead of ad-hoc parsing forCharles-François Natali2013-09-131-17/+52
* | | Merge for Issue #18997: Issue #18997: fix ElementTree crash with using pickle...Eli Bendersky2013-09-131-26/+24
|\ \ \ | |/ /
| * | Issue #18997: fix ElementTree crash with using pickle and __getstate__.Eli Bendersky2013-09-131-26/+24
| * | Issue 18752: Make chain.from_iterable() more visible in the documentation.Raymond Hettinger2013-09-091-1/+2
* | | Issue 18752: Make chain.from_iterable() more visible in the documentation.Raymond Hettinger2013-09-091-1/+2
* | | Close #18957: The PYTHONFAULTHANDLER environment variable now only enables theVictor Stinner2013-09-081-1/+4
* | | Issue #18808: Thread.join() now waits for the underlying thread state to be d...Antoine Pitrou2013-09-071-0/+62
* | | Fix conversion from Py_ssize_t to int.Richard Oudkerk2013-09-071-2/+4
* | | Issue #18458: Prevent crashes with newer versions of libedit. Its readlineNed Deily2013-09-061-12/+22
* | | Issue #18672: Fixed format specifiers for Py_ssize_t in debugging output inSerhiy Storchaka2013-09-051-14/+23
|\ \ \ | |/ /
| * | 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
|\ \ \ | |/ /