Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #13099: Fix sqlite3.Cursor.lastrowid under a Turkish locale. | Antoine Pitrou | 2011-10-04 | 2 | -0/+4 |
| | | | | Reported and diagnosed by Thomas Kluyver. | ||||
* | Add John to ACKS | Antoine Pitrou | 2011-10-04 | 1 | -0/+1 |
| | |||||
* | Issue #13087: BufferedReader.seek() now always raises UnsupportedOperation | Antoine Pitrou | 2011-10-04 | 1 | -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 their | Antoine Pitrou | 2011-10-04 | 2 | -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 Inge | 2011-10-04 | 1 | -0/+2 |
| | |||||
* | #4147: minidom's toprettyxml no longer adds whitespace to text nodes. | R David Murray | 2011-10-01 | 2 | -0/+3 |
| | | | | Patch by Dan Kenigsberg. | ||||
* | Issue #13034: When decoding some SSL certificates, the subjectAltName ↵ | Antoine Pitrou | 2011-10-01 | 1 | -0/+3 |
| | | | | extension could be unreported. | ||||
* | 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 #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 #12973: Fix itertools bug caused by signed integer overflow. Thanks ↵ | Mark Dickinson | 2011-09-24 | 1 | -3/+3 |
| | | | | Stefan Krah. | ||||
* | 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 | ||||
* | - 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 #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 |
| | |||||
* | 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 #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 |
|\ | |||||
| * | Fix determination of Metadata version (#8933). Patch by Filip Gruszczyński. | Éric Araujo | 2011-09-09 | 1 | -0/+4 |
| | | |||||
* | | NEWS | Jesus Cea | 2011-09-10 | 1 | -0/+5 |
|/ | |||||
* | 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 |
| |\ | |||||
| | * | 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. | ||||
* | | | 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: 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. | ||||
* | | | Merge with release clone. | Georg Brandl | 2011-09-04 | 2 | -17/+33 |
|\ \ \ | |||||
| * | | | Bump to 3.2.2. | Georg Brandl | 2011-09-03 | 2 | -2/+2 |
| | | | | |||||
| * | | | Make bdist_* commands respect --skip-build passed to bdist (#10946) | Éric Araujo | 2011-08-29 | 1 | -0/+3 |
| | | | | |||||
| * | | | Issue #12678: Fix distutils sdist test on Windows. | Nadeem Vawda | 2011-08-21 | 1 | -0/+1 |
| | | | | | | | | | | | | | | | | Patch by Jeremy Kloth. | ||||
| * | | | accept bytes for the AST 'string' type | Benjamin Peterson | 2011-09-01 | 1 | -0/+3 |
| | | | | | | | | | | | | | | | | This is a temporary kludge and all is well in 3.3. | ||||
| * | | | Fix-up NEWS merge. | Georg Brandl | 2011-09-03 | 1 | -4/+6 |
| | | | | |||||
| * | | | Issue #9651: Fix a crash when ctypes.create_string_buffer(0) was passed to | Amaury Forgeot d'Arc | 2011-08-30 | 1 | -0/+3 |
| | | | | | | | | | | | | | | | | some functions like file.write(). | ||||
| * | | | Issue #12839: Fix crash in zlib module due to version mismatch. | Nadeem Vawda | 2011-08-28 | 2 | -0/+5 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If the version of zlib used to compile the zlib module is incompatible with the one that is actually linked in, then calls into zlib will fail. This can leave attributes of the z_stream uninitialized, so we must take care to avoid segfaulting by trying to use an invalid pointer. Fix by Richard M. Tew. | ||||
| * | | | Issue #12326: sys.platform is now always 'linux2' on Linux | Victor Stinner | 2011-08-20 | 1 | -0/+4 |
| | | | | | | | | | | | | | | | | Even if Python is compiled on Linux 3. | ||||
| * | | | Post-release steps. | Georg Brandl | 2011-08-13 | 1 | -0/+12 |
| | | | | |||||
| * | | | Merge with cpython. | Georg Brandl | 2011-08-13 | 1 | -0/+3 |
| |\ \ \ | |||||
| * | | | | Bump version to 3.2.2rc1. | Georg Brandl | 2011-08-13 | 2 | -4/+4 |
| | | | | | |||||
* | | | | | Typo fix. | Georg Brandl | 2011-09-04 | 1 | -1/+1 |
| |_|/ / |/| | | | |||||
* | | | | add a __dict__ descr for IOBase (closes #12878) | Benjamin Peterson | 2011-09-03 | 1 | -0/+2 |
| | | | | |||||
* | | | | Issue #12764: Fix a crash in ctypes when the name of a Structure field is not | Amaury Forgeot d'Arc | 2011-09-02 | 1 | -0/+3 |
| |_|/ |/| | | | | | | | | a string. | ||||
* | | | Issue #12636: IDLE reads the coding cookie when executing a Python script. | Victor Stinner | 2011-09-01 | 1 | -0/+2 |
| | | | |||||
* | | | Issue #12802: the Windows error ERROR_DIRECTORY (numbered 267) is now | Antoine Pitrou | 2011-09-01 | 1 | -0/+3 |
| | | | | | | | | | | | | mapped to POSIX errno ENOTDIR (previously EINVAL). | ||||
* | | | accept bytes for the AST 'string' type | Benjamin Peterson | 2011-09-01 | 1 | -0/+3 |
| | | | | | | | | | | | | This is a temporary kludge and all is well in 3.3. | ||||
* | | | Issue #11241: subclasses of ctypes.Array can now be subclassed. | Amaury Forgeot d'Arc | 2011-08-30 | 1 | -0/+2 |
| | | | |||||
* | | | Issue #9651: Fix a crash when ctypes.create_string_buffer(0) was passed to | Amaury Forgeot d'Arc | 2011-08-30 | 1 | -0/+3 |
| | | | | | | | | | | | | some functions like file.write(). | ||||
* | | | Branch merge | Éric Araujo | 2011-08-30 | 1 | -0/+3 |
|\ \ \ | |||||
| * | | | Make bdist_* commands respect --skip-build passed to bdist (#10946) | Éric Araujo | 2011-08-29 | 1 | -0/+3 |
| | | | | |||||
* | | | | Issue #12847: Fix a crash with negative PUT and LONG_BINPUT arguments in | Antoine Pitrou | 2011-08-29 | 1 | -0/+3 |
| | | | | | | | | | | | | | | | | the C pickle implementation. | ||||
* | | | | Issue #11564: Avoid crashes when trying to pickle huge objects or containers | Antoine Pitrou | 2011-08-29 | 1 | -0/+3 |
|/ / / | | | | | | | | | | (more than 2**31 items). Instead, in most cases, an OverflowError is raised. |