Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #10951: Fix a compiler warning in timemodule.c | Victor Stinner | 2011-12-17 | 1 | -0/+4 |
| | |||||
* | main() now displays an error message before exiting if a command line argument | Victor Stinner | 2011-12-16 | 1 | -1/+5 |
| | | | | cannot be decoded | ||||
* | Issue #10350: Read and save errno before calling a function which might ↵ | Antoine Pitrou | 2011-12-16 | 5 | -11/+27 |
| | | | | | | overwrite it. Original patch by Hallvard B Furuseth. | ||||
* | Issue #4028: Make multiprocessing build on SunOS. | Charles-François Natali | 2011-12-14 | 1 | -1/+1 |
| | |||||
* | Issue #13505: Make pickling of bytes object compatible with Python 2. | Alexandre Vassalotti | 2011-12-13 | 1 | -13/+45 |
| | | | | Initial patch by sbt. | ||||
* | Fix docstring typo. | Florent Xicluna | 2011-12-09 | 1 | -1/+1 |
| | |||||
* | Issue #5905: time.strftime() is now using the locale encoding, instead of | Victor Stinner | 2011-12-09 | 1 | -9/+4 |
| | | | | UTF-8, if the wcsftime() function is not available. | ||||
* | Issue #13415: Test in configure if unsetenv() has a return value or not. | Charles-François Natali | 2011-11-27 | 1 | -0/+6 |
| | |||||
* | decref correct object | Benjamin Peterson | 2011-11-23 | 1 | -1/+1 |
| | |||||
* | plug refleak | Benjamin Peterson | 2011-11-23 | 1 | -1/+3 |
| | |||||
* | Issue #13458: Fix a memory leak in the ssl module when decoding a ↵ | Antoine Pitrou | 2011-11-23 | 1 | -0/+1 |
| | | | | | | certificate with a subjectAltName. Patch by Robert Xiao. | ||||
* | Issue #13415: os.unsetenv() doesn't ignore errors anymore. | Victor Stinner | 2011-11-22 | 1 | -17/+11 |
| | |||||
* | Issue #13093: Fix error handling on PyUnicode_EncodeDecimal() | Victor Stinner | 2011-11-22 | 1 | -2/+49 |
| | | | | | * Add tests for PyUnicode_EncodeDecimal() and PyUnicode_TransformDecimalToASCII() * Remove the unused "e" variable in replace() | ||||
* | Issue #13322: Fix BufferedWriter.write() to ensure that BlockingIOError is | Antoine Pitrou | 2011-11-21 | 1 | -32/+46 |
| | | | | | | | raised when the wrapped raw file is non-blocking and the write would block. Previous code assumed that the raw write() would raise BlockingIOError, but RawIOBase.write() is defined to returned None when the call would block. Patch by sbt. | ||||
* | Fix few typos. | Florent Xicluna | 2011-11-11 | 1 | -1/+1 |
| | |||||
* | #13379: update Unicode version in unicodedata docstrings and comments. | Ezio Melotti | 2011-11-10 | 1 | -5/+6 |
| | |||||
* | Issue #13339: Fix compile error in posixmodule.c due to missing semicolon. | Ross Lagerwall | 2011-11-04 | 1 | -1/+1 |
| | | | | Thanks to Robert Xiao. | ||||
* | Issue #12342: Improve _tkinter error message on unencodable character | Victor Stinner | 2011-11-03 | 1 | -2/+4 |
| | |||||
* | Issue #10570: curses.putp() is now expecting a byte string, instead of a | Victor Stinner | 2011-11-03 | 1 | -1/+2 |
| | | | | | | | Unicode string. This is an incompatible change, but putp() is used to emit terminfo commands, which are bytes strings, not Unicode strings. | ||||
* | Issue #10570: curses.tigetstr() is now expecting a byte string, instead of a | Victor Stinner | 2011-11-02 | 1 | -1/+1 |
| | | | | | | Unicode string. This is an incompatible change, but the previous behaviour was completly wrong. | ||||
* | Closes #2892: preserve iterparse events in case of SyntaxError. | Florent Xicluna | 2011-11-01 | 1 | -15/+23 |
| | |||||
* | Issue #13255: wrong docstrings in array module. | Florent Xicluna | 2011-10-24 | 1 | -4/+4 |
| | |||||
* | 3.2 - Fix Issue 12604 - Use a proper no-op macro expansion for VTRACE macro ↵ | Senthil Kumaran | 2011-10-19 | 1 | -1/+1 |
| | | | | in _sre.c | ||||
* | Issue #10653: Fix time.strftime() on Windows, check for invalid format strings | Victor Stinner | 2011-10-16 | 1 | -4/+4 |
| | |||||
* | Issue #10653: On Windows, use strftime() instead of wcsftime() because | Victor Stinner | 2011-10-14 | 1 | -0/+5 |
| | | | | wcsftime() doesn't format time zone correctly. | ||||
* | Issue #13159: Replace FileIO's quadratic-time buffer growth algorithm with a ↵ | Nadeem Vawda | 2011-10-13 | 2 | -30/+8 |
| | | | | | | linear-time one. Also fix the bz2 module, whose classes used the same algorithm. | ||||
* | Issue #13070: Fix a crash when a TextIOWrapper caught in a reference cycle | Charles-François Natali | 2011-10-05 | 1 | -0/+5 |
| | | | | | would be finalized after the reference to its underlying BufferedRWPair's writer got cleared by the GC. | ||||
* | Remove all other uses of the C tolower()/toupper() which could break with a ↵ | Antoine Pitrou | 2011-10-04 | 3 | -6/+6 |
| | | | | Turkish locale. | ||||
* | Issue #13099: Fix sqlite3.Cursor.lastrowid under a Turkish locale. | Antoine Pitrou | 2011-10-04 | 1 | -2/+2 |
| | | | | Reported and diagnosed by Thomas Kluyver. | ||||
* | Issue #13087: BufferedReader.seek() now always raises UnsupportedOperation | Antoine Pitrou | 2011-10-04 | 1 | -0/+3 |
| | | | | | 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 | 1 | -4/+4 |
| | | | | | 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 | -1/+7 |
| | |||||
* | Issue #13034: When decoding some SSL certificates, the subjectAltName ↵ | Antoine Pitrou | 2011-10-01 | 1 | -1/+1 |
| | | | | extension could be unreported. | ||||
* | Issue #13058: ossaudiodev: fix a file descriptor leak on error. Patch by Thomas | Charles-François Natali | 2011-09-29 | 1 | -0/+1 |
| | | | | Jarosch. | ||||
* | Issue #13013: ctypes: Fix a reference leak in PyCArrayType_from_ctype. | Meador Inge | 2011-09-28 | 1 | -0/+1 |
| | | | | 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 | -1/+3 |
| | | | | Stefan Krah. | ||||
* | fix compiler compliant about \0 not being an opcode | Benjamin Peterson | 2011-09-23 | 1 | -6/+5 |
| | |||||
* | Close #13022: _multiprocessing.recvfd() doesn't check that file descriptor ↵ | Jesus Cea | 2011-09-21 | 1 | -0/+11 |
| | | | | was actually received | ||||
* | Issue #12483: ctypes: Fix a crash when the destruction of a callback | Amaury Forgeot d'Arc | 2011-09-12 | 1 | -0/+1 |
| | | | | object triggers the garbage collector. | ||||
* | Close #12950: multiprocessing "test_fd_transfer" fails under OpenIndiana | Jesus Cea | 2011-09-10 | 1 | -11/+23 |
| | |||||
* | cast to getter | Benjamin Peterson | 2011-09-06 | 1 | -1/+1 |
| | |||||
* | add a __dict__ descr for IOBase (closes #12878) | Benjamin Peterson | 2011-09-03 | 1 | -0/+14 |
| | |||||
* | Issue #12764: Fix a crash in ctypes when the name of a Structure field is not | Amaury Forgeot d'Arc | 2011-09-02 | 1 | -2/+15 |
| | | | | a string. | ||||
* | Issue #11241: subclasses of ctypes.Array can now be subclassed. | Amaury Forgeot d'Arc | 2011-08-30 | 1 | -40/+39 |
| | |||||
* | Issue #9651: Fix a crash when ctypes.create_string_buffer(0) was passed to | Amaury Forgeot d'Arc | 2011-08-30 | 1 | -2/+4 |
| | | | | some functions like file.write(). | ||||
* | Issue #12847: Fix a crash with negative PUT and LONG_BINPUT arguments in | Antoine Pitrou | 2011-08-29 | 1 | -1/+10 |
| | | | | the C pickle implementation. | ||||
* | Issue #11564: Avoid crashes when trying to pickle huge objects or containers | Antoine Pitrou | 2011-08-29 | 1 | -72/+103 |
| | | | | (more than 2**31 items). Instead, in most cases, an OverflowError is raised. | ||||
* | Issue #12287: Fix a stack corruption in ossaudiodev module when the FD is | Charles-François Natali | 2011-08-28 | 4 | -19/+11 |
| | | | | greater than FD_SETSIZE. | ||||
* | Issue #12839: Fix crash in zlib module due to version mismatch. | Nadeem Vawda | 2011-08-28 | 1 | -1/+7 |
| | | | | | | | | | 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 #11657: Fix sending file descriptors over 255 over a multiprocessing Pipe. | Antoine Pitrou | 2011-08-23 | 1 | -2/+2 |
| | | | | Also added some tests. |