Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #13058: ossaudiodev: fix a file descriptor leak on error. Patch by Thomas | Charles-François Natali | 2011-09-29 | 2 | -0/+4 |
|\ | | | | | | | Jarosch. | ||||
| * | Issue #13058: ossaudiodev: fix a file descriptor leak on error. Patch by Thomas | Charles-François Natali | 2011-09-29 | 2 | -0/+4 |
| | | | | | | | | Jarosch. | ||||
* | | Enhance Py_ARRAY_LENGTH(): fail at build time if the argument is not an array | Victor Stinner | 2011-09-28 | 1 | -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öwis | 2011-09-28 | 1 | -1/+2 |
| | | |||||
* | | Implement PEP 393. | Martin v. Löwis | 2011-09-28 | 1 | -0/+2 |
| | | |||||
* | | Issue #13013: ctypes: Fix a reference leak in PyCArrayType_from_ctype. | Meador Inge | 2011-09-28 | 2 | -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 Inge | 2011-09-28 | 2 | -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 Dickinson | 2011-09-24 | 1 | -0/+4 |
| | | | | | | | | str.splitlines, bytes.splitlines and bytearray.splitlines. | ||||
* | | Merge #12973 itertools fix. | Mark Dickinson | 2011-09-24 | 1 | -3/+3 |
|\ \ | |/ | |||||
| * | Issue #12973: Fix itertools bug caused by signed integer overflow. Thanks ↵ | Mark Dickinson | 2011-09-24 | 1 | -3/+3 |
| | | | | | | | | Stefan Krah. | ||||
* | | Merge 3.2: Issue #7732: Don't open a directory as a file anymore while | Victor Stinner | 2011-09-23 | 1 | -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 a | Victor Stinner | 2011-09-23 | 1 | -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 Cea | 2011-09-21 | 1 | -0/+3 |
|\ \ | |/ | | | | | was actually received | ||||
| * | Close #13022: _multiprocessing.recvfd() doesn't check that file descriptor ↵ | Jesus Cea | 2011-09-21 | 1 | -0/+3 |
| | | | | | | | | was actually received | ||||
* | | Issue #1172711: Add 'long long' support to the array module. | Meador Inge | 2011-09-21 | 1 | -0/+3 |
| | | | | | | | | Initial patch by Oren Tirosh and Hirokazu Yamamoto. | ||||
* | | - Issue #13021: Missing decref on an error path. Thanks to Suman Saha for | Barry Warsaw | 2011-09-20 | 1 | -0/+3 |
|\ \ | |/ | | | | | finding the bug and providing a patch. | ||||
| * | - Issue #13021: Missing decref on an error path. Thanks to Suman Saha for | Barry Warsaw | 2011-09-20 | 1 | -0/+3 |
| | | | | | | | | finding the bug and providing a patch. | ||||
* | | Merge issue #12973 list_repeat fix. | Mark Dickinson | 2011-09-19 | 1 | -0/+4 |
|\ \ | |/ | |||||
| * | Issue #12973: Fix undefined-behaviour-inducing overflow check in list_repeat. | Mark Dickinson | 2011-09-19 | 1 | -0/+4 |
| | | |||||
* | | Close #13007: whichdb should recognize gdbm 1.9 magic numbers | Jesus Cea | 2011-09-19 | 1 | -0/+2 |
|\ \ | |/ | |||||
| * | Close #13007: whichdb should recognize gdbm 1.9 magic numbers | Jesus Cea | 2011-09-19 | 1 | -0/+2 |
| | | |||||
* | | Issue #9871: Prevent IDLE 3 crash when given byte stings | Ned Deily | 2011-09-14 | 2 | -0/+5 |
|\ \ | |/ | | | | | | | with invalid hex escape sequences, like b'\x0'. (Original patch by Claudiu Popa.) | ||||
| * | Issue #9871: Prevent IDLE 3 crash when given byte stings | Ned Deily | 2011-09-14 | 2 | -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 callback | Amaury Forgeot d'Arc | 2011-09-12 | 1 | -0/+3 |
|\ \ | |/ | | | | | object triggers the garbage collector. | ||||
| * | Issue #12483: ctypes: Fix a crash when the destruction of a callback | Amaury Forgeot d'Arc | 2011-09-12 | 1 | -0/+3 |
| | | | | | | | | object triggers the garbage collector. | ||||
| * | Branch merge | Éric Araujo | 2011-09-12 | 1 | -0/+4 |
| |\ | |||||
* | \ | Branch merge | Éric Araujo | 2011-09-12 | 1 | -0/+4 |
|\ \ \ | |||||
| * | | | Fix determination of Metadata version in packaging (#8933). | Éric Araujo | 2011-09-10 | 1 | -3/+3 |
| | | | | | | | | | | | | | | | | Original patch by Filip Gruszczyński. | ||||
| * | | | Merge fix for #8933 from 3.2 | Éric Araujo | 2011-09-10 | 1 | -0/+4 |
| |\ \ \ | | | |/ | | |/| | |||||
| | * | | Fix determination of Metadata version (#8933). Patch by Filip Gruszczyński. | Éric Araujo | 2011-09-09 | 1 | -0/+4 |
| | | | | |||||
* | | | | Issue #12306: Add ZLIB_RUNTIME_VERSION to the zlib module. | Nadeem Vawda | 2011-09-11 | 1 | -0/+3 |
| | | | | | | | | | | | | | | | | | | | | | | | | While we're at it, also document ZLIB_VERSION. Patch by Torsten Landschoff. | ||||
* | | | | add ChainMap to __all__ (closes #12959) | Benjamin Peterson | 2011-09-11 | 1 | -0/+2 |
| | | | | | | | | | | | | | | | | Thanks July Tikhonov. | ||||
* | | | | NEWS | Jesus Cea | 2011-09-10 | 1 | -0/+3 |
|\ \ \ \ | |/ / / |/| | / | | |/ | |/| | |||||
| * | | NEWS | Jesus Cea | 2011-09-10 | 1 | -0/+5 |
| |/ | |||||
* | | Issue #12904: os.utime, os.futimes, os.lutimes, and os.futimesat now write | Larry Hastings | 2011-09-09 | 1 | -0/+3 |
| | | | | | | | | atime and mtime with nanosecond precision on modern POSIX platforms. | ||||
* | | Issue #12852: Set _XOPEN_SOURCE to 700 to get POSIX 2008 | Victor Stinner | 2011-09-07 | 1 | -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() function | Victor Stinner | 2011-09-05 | 1 | -0/+3 |
| | | | | | | | | Push a character so the next get_wch() will return it. | ||||
* | | Issue #9561: packaging now writes egg-info files using UTF-8 | Victor Stinner | 2011-09-05 | 1 | -1/+1 |
| | | | | | | | | instead of the locale encoding | ||||
* | | Merge 3.2: Issue #9561: distutils now reads and writes egg-info files using ↵ | Victor Stinner | 2011-09-05 | 1 | -0/+3 |
|\ \ | |/ | | | | | | | | | UTF-8 instead of the locale encoding. | ||||
| * | Issue #9561: distutils now reads and writes egg-info files using UTF-8 | Victor Stinner | 2011-09-05 | 1 | -1/+4 |
| | | | | | | | | instead of the locale encoding. | ||||
| * | Branch merge | Éric Araujo | 2011-09-05 | 1 | -0/+3 |
| |\ | |||||
| | * | Branch merge | Éric Araujo | 2011-09-04 | 1 | -0/+3 |
| | |\ | |||||
* | | \ | Branch merge | Éric Araujo | 2011-09-05 | 1 | -0/+3 |
|\ \ \ \ | |||||
| * \ \ \ | Branch merge | Éric Araujo | 2011-09-04 | 1 | -0/+3 |
| |\ \ \ \ | |||||
| | * \ \ \ | Merge fix for #8286 from 3.2 | Éric Araujo | 2011-09-02 | 1 | -0/+3 |
| | |\ \ \ \ | | | | |_|/ | | | |/| | | |||||
| | | * | | | Warn instead of crashing because of invalid path in MANIFEST.in (#8286). | Éric Araujo | 2011-09-02 | 1 | -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äbel | 2011-09-05 | 1 | -0/+5 |
|\ \ \ \ \ \ | | |_|_|/ / | |/| | | | | |||||
| * | | | | | Issue #12841: Fix tarfile extraction of non-existent uids/gids. | Lars Gustäbel | 2011-09-05 | 1 | -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 Melotti | 2011-09-05 | 2 | -0/+4 |
|\ \ \ \ \ \ | |/ / / / / | |||||
| * | | | | | #12888: Fix a bug in HTMLParser.unescape that prevented it to escape more ↵ | Ezio Melotti | 2011-09-05 | 2 | -0/+4 |
| | | | | | | | | | | | | | | | | | | | | | | | | than 128 entities. Patch by Peter Otten. |