summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
...
* | | Remove all other uses of the C tolower()/toupper() which could break with a T...Antoine Pitrou2011-10-043-6/+6
* | | Issue #13099: Fix sqlite3.Cursor.lastrowid under a Turkish locale.Antoine Pitrou2011-10-041-2/+2
* | | Issue #7689: Allow pickling of dynamically created classes when theirAntoine Pitrou2011-10-041-5/+5
* | | Issue #12881: ctypes: Fix segfault with large structure field names.Meador Inge2011-10-041-1/+7
* | | Issue #13034: When decoding some SSL certificates, the subjectAltName extensi...Antoine Pitrou2011-10-011-1/+1
* | | Issue #13058: ossaudiodev: fix a file descriptor leak on error. Patch by ThomasCharles-François Natali2011-09-291-0/+1
* | | Issue #13013: ctypes: Fix a reference leak in PyCArrayType_from_ctype.Meador Inge2011-09-281-0/+1
* | | Backport issue #12973 itertools fix from 3.x.Mark Dickinson2011-09-241-1/+3
* | | Close #13022: _multiprocessing.recvfd() doesn't check that file descriptor wa...Jesus Cea2011-09-211-0/+11
* | | Use bitwise instead of logical or for flags.Stefan Krah2011-09-151-1/+1
* | | Issue #12483: ctypes: Fix a crash when the destruction of a callbackAmaury Forgeot d'Arc2011-09-121-0/+1
* | | Close #12950: multiprocessing "test_fd_transfer" fails under OpenIndianaJesus Cea2011-09-101-11/+23
* | | Issue #12764: Fix a crash in ctypes when the name of a Structure field is notAmaury Forgeot d'Arc2011-09-021-2/+15
* | | Issue #9651: Fix a crash when ctypes.create_string_buffer(0) was passed toAmaury Forgeot d'Arc2011-08-301-2/+4
* | | Issue #12287: Fix a stack corruption in ossaudiodev module when the FD isCharles-François Natali2011-08-284-19/+11
* | | Issue #12839: Fix crash in zlib module due to version mismatch.Nadeem Vawda2011-08-281-1/+7
* | | Issue #11657: Fix sending file descriptors over 255 over a multiprocessing Pipe.Antoine Pitrou2011-08-231-2/+2
* | | Issue #12213: Fix a buffering bug with interleaved reads and writes thatAntoine Pitrou2011-08-201-59/+58
* | | #12725: fix working. Patch by Ben Hayden.Ezio Melotti2011-08-141-3/+3
* | | dosmodule is, thankfully, no moreBenjamin Peterson2011-08-041-2/+0
* | | Issue #12434: make StringIO.write error message consistent with Python 2.7 no...Eli Bendersky2011-07-221-1/+1
* | | - Issue #10309: Define _GNU_SOURCE so that mremap() gets the properBarry Warsaw2011-07-191-0/+5
* | | Issue #9611, #9015: FileIO.read(), FileIO.readinto(), FileIO.write() andVictor Stinner2011-07-052-7/+36
* | | Really fix issue #10898: posixmodule.c redefines FSTATAntoine Pitrou2011-07-011-14/+14
* | | Fix closes issue 11568 - update select.epoll.register docstring with mention ...Senthil Kumaran2011-06-271-1/+1
* | | Issue 12404: Remove C89 incompatible code from mmap module.Ross Lagerwall2011-06-251-1/+2
* | | Correction to f1509fc75435 - Issue #11583Brian Curtin2011-06-091-1/+4
* | | MergeBrian Curtin2011-06-091-0/+36
* | | Issue #12016: Reindent decoders of HK and JP codecsVictor Stinner2011-06-032-51/+52
* | | Branch mergeÉric Araujo2011-06-011-1/+1
|\ \ \
| * | | Fix error message to use the Python name instead of the C nameÉric Araujo2011-05-311-1/+1
* | | | simply use the Python version for pyexpat.__version__ #12221Benjamin Peterson2011-05-311-21/+5
|/ / /
* | | Issue #12175: RawIOBase.readall() now returns None if read() returns None.Victor Stinner2011-05-251-0/+8
* | | Issue #12175: FileIO.readall() now raises a ValueError instead of an IOError ifVictor Stinner2011-05-251-0/+2
* | | Issue #12100: Don't reset incremental encoders of CJK codecs at each call toVictor Stinner2011-05-241-4/+4
* | | Issue #12124: zipimport doesn't keep a reference to zlib.decompress() anymoreVictor Stinner2011-05-211-24/+23
* | | stop using the old brain-dead interface for providing attributes/methodsBenjamin Peterson2011-05-171-120/+118
* | | Issue #12050: zlib.decompressobj().decompress() now clears the unconsumed_tailNadeem Vawda2011-05-141-7/+12
* | | Issue #12062: In the `io` module, fix a flushing bug when doing a certainAntoine Pitrou2011-05-121-1/+1
* | | #12051: Fix segfault in json.dumps() while encoding highly-nested objects usi...Ezio Melotti2011-05-101-2/+15
* | | Issue #8498: In socket.accept(), allow to specify 0 as a backlog value inAntoine Pitrou2011-05-101-4/+7
* | | (Merge 3.1) Issue #12012: ssl.PROTOCOL_SSLv2 becomes optionalVictor Stinner2011-05-091-1/+7
* | | #10169: Fix argument parsing in socket.sendto() to avoid error masking.Ezio Melotti2011-05-071-5/+15
* | | #12017: Fix segfault in json.loads() while decoding highly-nested objects usi...Ezio Melotti2011-05-071-4/+26
* | | #11982: remove now unused function.Ezio Melotti2011-05-041-18/+0
* | | #11982: fix json.loads('""') to return u'' rather than ''.Ezio Melotti2011-05-041-1/+1
* | | (Merge 3.1) Issue #11277: mmap.mmap() calls fcntl(fd, F_FULLFSYNC) on Mac OS XVictor Stinner2011-05-031-0/+9
|/ /
* | Issue #10517: After fork(), reinitialize the TLS used by the PyGILState_*Antoine Pitrou2011-04-271-0/+1
* | (Merge 3.1) Issue #11768: The signal handler of the signal module only callsVictor Stinner2011-04-181-10/+16
* | Remove unnecessary call to PyErr_Clear.Ezio Melotti2011-04-111-1/+0