summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
* 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.
* | Issue #9561: packaging now writes egg-info files using UTF-8Victor Stinner2011-09-051-1/+1
| | | | | | | | instead of the locale encoding
* | Merge 3.2: Issue #9561: distutils now reads and writes egg-info files using ↵Victor Stinner2011-09-051-0/+3
|\ \ | |/ | | | | | | | | UTF-8 instead of the locale encoding.
| * Issue #9561: distutils now reads and writes egg-info files using UTF-8Victor Stinner2011-09-051-1/+4
| | | | | | | | instead of the locale encoding.
| * Branch mergeÉric Araujo2011-09-051-0/+3
| |\
| | * Branch mergeÉric Araujo2011-09-041-0/+3
| | |\
* | | \ Branch mergeÉric Araujo2011-09-051-0/+3
|\ \ \ \
| * \ \ \ Branch mergeÉric Araujo2011-09-041-0/+3
| |\ \ \ \
| | * \ \ \ Merge fix for #8286 from 3.2Éric Araujo2011-09-021-0/+3
| | |\ \ \ \ | | | | |_|/ | | | |/| |
| | | * | | Warn instead of crashing because of invalid path in MANIFEST.in (#8286).Éric Araujo2011-09-021-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | sdist used to crash with a full traceback dump instead of printing a nice warning with the faulty line number.
* | | | | | Merge with 3.2: Issue #12841: Fix tarfile extraction of non-existent uids/gids.Lars Gustäbel2011-09-051-0/+5
|\ \ \ \ \ \ | | |_|_|/ / | |/| | | |
| * | | | | Issue #12841: Fix tarfile extraction of non-existent uids/gids.Lars Gustäbel2011-09-051-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | tarfile unnecessarily checked the existence of numerical user and group ids on extraction. If one of them did not exist the respective id of the current user (i.e. root) was used for the file and ownership information was lost. (Patch by Sebastien Luttringer)
* | | | | | #12888: merge with 3.2.Ezio Melotti2011-09-052-0/+4
|\ \ \ \ \ \ | |/ / / / /
| * | | | | #12888: Fix a bug in HTMLParser.unescape that prevented it to escape more ↵Ezio Melotti2011-09-052-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | than 128 entities. Patch by Peter Otten.