| Commit message (Expand) | Author | Age | Files | Lines |
* | 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 |
|
|
* | 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 |
|
|
* | Issue #10570: curses.tigetstr() is now expecting a byte string, instead of a | Victor Stinner | 2011-11-02 | 1 | -1/+1 |
|
|
* | 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 i... | Senthil Kumaran | 2011-10-19 | 1 | -1/+1 |
|
|
* | 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 |
|
|
* | Issue #13159: Replace FileIO's quadratic-time buffer growth algorithm with a ... | Nadeem Vawda | 2011-10-13 | 2 | -30/+8 |
|
|
* | Issue #13070: Fix a crash when a TextIOWrapper caught in a reference cycle | Charles-François Natali | 2011-10-05 | 1 | -0/+5 |
|
|
* | Remove all other uses of the C tolower()/toupper() which could break with a T... | Antoine Pitrou | 2011-10-04 | 3 | -6/+6 |
|
|
* | Issue #13099: Fix sqlite3.Cursor.lastrowid under a Turkish locale. | Antoine Pitrou | 2011-10-04 | 1 | -2/+2 |
|
|
* | Issue #13087: BufferedReader.seek() now always raises UnsupportedOperation | Antoine Pitrou | 2011-10-04 | 1 | -0/+3 |
|
|
* | Issue #7689: Allow pickling of dynamically created classes when their | Antoine Pitrou | 2011-10-04 | 1 | -4/+4 |
|
|
* | 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 extensi... | Antoine Pitrou | 2011-10-01 | 1 | -1/+1 |
|
|
* | Issue #13058: ossaudiodev: fix a file descriptor leak on error. Patch by Thomas | Charles-François Natali | 2011-09-29 | 1 | -0/+1 |
|
|
* | Issue #13013: ctypes: Fix a reference leak in PyCArrayType_from_ctype. | Meador Inge | 2011-09-28 | 1 | -0/+1 |
|
|
* | Issue #12973: Fix itertools bug caused by signed integer overflow. Thanks St... | Mark Dickinson | 2011-09-24 | 1 | -1/+3 |
|
|
* | 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 wa... | Jesus Cea | 2011-09-21 | 1 | -0/+11 |
|
|
* | Issue #12483: ctypes: Fix a crash when the destruction of a callback | Amaury Forgeot d'Arc | 2011-09-12 | 1 | -0/+1 |
|
|
* | 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 |
|
|
* | 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 |
|
|
* | Issue #12847: Fix a crash with negative PUT and LONG_BINPUT arguments in | Antoine Pitrou | 2011-08-29 | 1 | -1/+10 |
|
|
* | Issue #11564: Avoid crashes when trying to pickle huge objects or containers | Antoine Pitrou | 2011-08-29 | 1 | -72/+103 |
|
|
* | Issue #12287: Fix a stack corruption in ossaudiodev module when the FD is | Charles-François Natali | 2011-08-28 | 4 | -19/+11 |
|
|
* | Issue #12839: Fix crash in zlib module due to version mismatch. | Nadeem Vawda | 2011-08-28 | 1 | -1/+7 |
|
|
* | Issue #11657: Fix sending file descriptors over 255 over a multiprocessing Pipe. | Antoine Pitrou | 2011-08-23 | 1 | -2/+2 |
|
|
* | Issue #12213: Fix a buffering bug with interleaved reads and writes that | Antoine Pitrou | 2011-08-20 | 1 | -59/+58 |
|
|
* | #12725: fix working. Patch by Ben Hayden. | Ezio Melotti | 2011-08-14 | 1 | -3/+3 |
|
|
* | Issue #12687: Fix a possible buffering bug when unpickling text mode (protoco... | Antoine Pitrou | 2011-08-11 | 1 | -2/+1 |
|
|
* | dosmodule is, thankfully, no more | Benjamin Peterson | 2011-08-04 | 1 | -2/+0 |
|
|
* | Issue #12607: In subprocess, fix issue where if stdin, stdout or stderr is | Ross Lagerwall | 2011-07-27 | 1 | -0/+7 |
|
|
* | Issue #12591: Allow io.TextIOWrapper to work with raw IO objects (without | Antoine Pitrou | 2011-07-23 | 1 | -6/+14 |
|
|
* | - Issue #10309: Define _GNU_SOURCE so that mremap() gets the proper | Barry Warsaw | 2011-07-19 | 1 | -0/+5 |
|
|
* | Issue #11321: Fix a crash with multiple imports of the _pickle module when | Antoine Pitrou | 2011-07-15 | 1 | -0/+2 |
|
|
* | Raise ValueError when attempting to set the _CHUNK_SIZE attribute of a TextIO... | Antoine Pitrou | 2011-07-13 | 1 | -1/+1 |
|
|
* | Issue #12440: When testing whether some bits in SSLContext.options can be | Antoine Pitrou | 2011-07-08 | 1 | -9/+25 |
|
|
* | Issue #9611, #9015: FileIO.read() clamps the length to INT_MAX on Windows. | Victor Stinner | 2011-07-05 | 1 | -0/+8 |
|
|
* | Fix closes issue 11568 - update select.epoll.register docstring with mention ... | Senthil Kumaran | 2011-06-27 | 1 | -1/+1 |
|
|
* | Issue 12404: Remove C89 incompatible code from mmap module. | Ross Lagerwall | 2011-06-25 | 1 | -1/+2 |
|
|
* | posixmodule.c: fix function name in argument parsing | Victor Stinner | 2011-06-17 | 1 | -22/+22 |
|
|