summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
* Issue #13099: Fix sqlite3.Cursor.lastrowid under a Turkish locale.Antoine Pitrou2011-10-042-0/+4
|\ | | | | | | Reported and diagnosed by Thomas Kluyver.
| * Issue #13099: Fix sqlite3.Cursor.lastrowid under a Turkish locale.Antoine Pitrou2011-10-042-0/+4
| | | | | | | | Reported and diagnosed by Thomas Kluyver.
* | Issue #13087: BufferedReader.seek() now always raises UnsupportedOperationAntoine Pitrou2011-10-041-0/+4
|\ \ | |/ | | | | | | if the underlying raw stream is unseekable, even if the seek could be satisfied using the internal buffer. Patch by John OConnor.
| * Add John to ACKSAntoine Pitrou2011-10-041-0/+1
| |
| * Issue #13087: BufferedReader.seek() now always raises UnsupportedOperationAntoine Pitrou2011-10-041-0/+4
| | | | | | | | | | if the underlying raw stream is unseekable, even if the seek could be satisfied using the internal buffer. Patch by John O'Connor.
* | Issue #7689: Allow pickling of dynamically created classes when theirAntoine Pitrou2011-10-042-0/+6
|\ \ | |/ | | | | | | metaclass is registered with copyreg. Patch by Nicolas M. Thiéry and Craig Citro.
| * Issue #7689: Allow pickling of dynamically created classes when theirAntoine Pitrou2011-10-042-0/+6
| | | | | | | | | | metaclass is registered with copyreg. Patch by Nicolas M. Thiéry and Craig Citro.
* | Issue #12881: ctypes: Fix segfault with large structure field names.Meador Inge2011-10-041-0/+2
|\ \ | |/
| * Issue #12881: ctypes: Fix segfault with large structure field names.Meador Inge2011-10-041-0/+2
| |
* | merge #4147: minidom's toprettyxml no longer adds whitespace to text nodes.R David Murray2011-10-012-0/+3
|\ \ | |/
| * #4147: minidom's toprettyxml no longer adds whitespace to text nodes.R David Murray2011-10-012-0/+3
| | | | | | | | Patch by Dan Kenigsberg.
* | Issue #13034: When decoding some SSL certificates, the subjectAltName ↵Antoine Pitrou2011-10-011-0/+3
|\ \ | |/ | | | | extension could be unreported.
| * Issue #13034: When decoding some SSL certificates, the subjectAltName ↵Antoine Pitrou2011-10-011-0/+3
| | | | | | | | extension could be unreported.
* | Issue #13058: ossaudiodev: fix a file descriptor leak on error. Patch by ThomasCharles-François Natali2011-09-292-0/+4
|\ \ | |/ | | | | Jarosch.
| * Issue #13058: ossaudiodev: fix a file descriptor leak on error. Patch by ThomasCharles-François Natali2011-09-292-0/+4
| | | | | | | | Jarosch.
* | Enhance Py_ARRAY_LENGTH(): fail at build time if the argument is not an arrayVictor Stinner2011-09-281-0/+1
| | | | | | | | | | | | Move other various macros to pymcacro.h Thanks Rusty Russell for having written these amazing C macros!
* | ACKS for PEP 393.Martin v. Löwis2011-09-281-1/+2
| |
* | Implement PEP 393.Martin v. Löwis2011-09-281-0/+2
| |
* | Issue #13013: ctypes: Fix a reference leak in PyCArrayType_from_ctype.Meador Inge2011-09-282-0/+4
|\ \ | |/ | | | | Thanks to Suman Saha for finding the bug and providing a patch.
| * Issue #13013: ctypes: Fix a reference leak in PyCArrayType_from_ctype.Meador Inge2011-09-282-0/+4
| | | | | | | | Thanks to Suman Saha for finding the bug and providing a patch.
* | Issue #13012: Allow 'keepends' to be passed as a keyword argument in ↵Mark Dickinson2011-09-241-0/+4
| | | | | | | | str.splitlines, bytes.splitlines and bytearray.splitlines.
* | Merge #12973 itertools fix.Mark Dickinson2011-09-241-3/+3
|\ \ | |/
| * Issue #12973: Fix itertools bug caused by signed integer overflow. Thanks ↵Mark Dickinson2011-09-241-3/+3
| | | | | | | | Stefan Krah.
* | Merge 3.2: Issue #7732: Don't open a directory as a file anymore whileVictor Stinner2011-09-231-1/+5
|\ \ | |/ | | | | | | importing a module. Ignore the direcotry if its name matchs the module name (e.g. "__init__.py") and raise a ImportError instead.
| * Issue #7732: Don't open a directory as a file anymore while importing aVictor Stinner2011-09-231-1/+5
| | | | | | | | | | module. Ignore the direcotry if its name matchs the module name (e.g. "__init__.py") and raise a ImportError instead.
* | Close #13022: _multiprocessing.recvfd() doesn't check that file descriptor ↵Jesus Cea2011-09-211-0/+3
|\ \ | |/ | | | | was actually received
| * Close #13022: _multiprocessing.recvfd() doesn't check that file descriptor ↵Jesus Cea2011-09-211-0/+3
| | | | | | | | was actually received
* | Issue #1172711: Add 'long long' support to the array module.Meador Inge2011-09-211-0/+3
| | | | | | | | Initial patch by Oren Tirosh and Hirokazu Yamamoto.
* | - Issue #13021: Missing decref on an error path. Thanks to Suman Saha forBarry Warsaw2011-09-201-0/+3
|\ \ | |/ | | | | finding the bug and providing a patch.
| * - Issue #13021: Missing decref on an error path. Thanks to Suman Saha forBarry Warsaw2011-09-201-0/+3
| | | | | | | | finding the bug and providing a patch.
* | Merge issue #12973 list_repeat fix.Mark Dickinson2011-09-191-0/+4
|\ \ | |/
| * Issue #12973: Fix undefined-behaviour-inducing overflow check in list_repeat.Mark Dickinson2011-09-191-0/+4
| |
* | Close #13007: whichdb should recognize gdbm 1.9 magic numbersJesus Cea2011-09-191-0/+2
|\ \ | |/
| * Close #13007: whichdb should recognize gdbm 1.9 magic numbersJesus Cea2011-09-191-0/+2
| |
* | Issue #9871: Prevent IDLE 3 crash when given byte stingsNed Deily2011-09-142-0/+5
|\ \ | |/ | | | | | | with invalid hex escape sequences, like b'\x0'. (Original patch by Claudiu Popa.)
| * Issue #9871: Prevent IDLE 3 crash when given byte stingsNed Deily2011-09-142-0/+5
| | | | | | | | | | with invalid hex escape sequences, like b'\x0'. (Original patch by Claudiu Popa.)
* | Merge 3.2: Issue #12483: ctypes: Fix a crash when the destruction of a callbackAmaury Forgeot d'Arc2011-09-121-0/+3
|\ \ | |/ | | | | object triggers the garbage collector.
| * Issue #12483: ctypes: Fix a crash when the destruction of a callbackAmaury Forgeot d'Arc2011-09-121-0/+3
| | | | | | | | object triggers the garbage collector.
| * Branch mergeÉric Araujo2011-09-121-0/+4
| |\
* | \ Branch mergeÉric Araujo2011-09-121-0/+4
|\ \ \
| * | | Fix determination of Metadata version in packaging (#8933).Éric Araujo2011-09-101-3/+3
| | | | | | | | | | | | | | | | Original patch by Filip Gruszczyński.
| * | | Merge fix for #8933 from 3.2Éric Araujo2011-09-101-0/+4
| |\ \ \ | | | |/ | | |/|
| | * | Fix determination of Metadata version (#8933). Patch by Filip Gruszczyński.Éric Araujo2011-09-091-0/+4
| | | |
* | | | Issue #12306: Add ZLIB_RUNTIME_VERSION to the zlib module.Nadeem Vawda2011-09-111-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | While we're at it, also document ZLIB_VERSION. Patch by Torsten Landschoff.
* | | | add ChainMap to __all__ (closes #12959)Benjamin Peterson2011-09-111-0/+2
| | | | | | | | | | | | | | | | Thanks July Tikhonov.
* | | | NEWSJesus Cea2011-09-101-0/+3
|\ \ \ \ | |/ / / |/| | / | | |/ | |/|
| * | NEWSJesus Cea2011-09-101-0/+5
| |/
* | Issue #12904: os.utime, os.futimes, os.lutimes, and os.futimesat now writeLarry Hastings2011-09-091-0/+3
| | | | | | | | atime and mtime with nanosecond precision on modern POSIX platforms.
* | Issue #12852: Set _XOPEN_SOURCE to 700 to get POSIX 2008Victor Stinner2011-09-071-0/+3
| | | | | | | | | | configure: Set _XOPEN_SOURCE to 700, instead of 600, to get POSIX 2008 functions on OpenBSD (e.g. fdopendir).
* | Issue #12567: Add curses.unget_wch() functionVictor Stinner2011-09-051-0/+3
| | | | | | | | Push a character so the next get_wch() will return it.