summaryrefslogtreecommitdiffstats
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* 2.7 : Issue #16013: Fix CSV Reader parsing issue with ending quote characters...Senthil Kumaran2012-09-251-3/+7
* Issue #16012: Fix a regression in pyexpat. The parser's UseForeignDTD()Christian Heimes2012-09-241-1/+1
* #15796: Fix \n in readline docstring.Ezio Melotti2012-09-181-1/+1
* #15676: mmap: add empty file check prior to offset check <- Previous patch wa...Jesus Cea2012-09-101-0/+1
* #15676: mmap: add empty file check prior to offset check <- Previous patch wa...Jesus Cea2012-09-101-0/+5
* Closes #15910: MD5 and SHA1 crash when "updated" with strings bigger than 2**...Jesus Cea2012-09-102-4/+30
* Closes #15908: SHA1 crashes in 64 bits when the string to hash is bigger than...Jesus Cea2012-09-101-3/+16
* - Mention _heapq in Setup.dist.doko@ubuntu.com2012-09-101-0/+1
* Closes #15676: mmap: add empty file check prior to offset checkJesus Cea2012-09-091-0/+5
* Issue #15841: The readable(), writable() and seekable() methods of io.BytesIOAntoine Pitrou2012-09-052-8/+31
* Issue #15765: Fix quirky NetBSD getcwd() behaviour.Trent Nelson2012-08-291-1/+3
* Fix issue 13370: Ensure that ctypes works on Mac OS X when Python is compiled...Ronald Oussoren2012-08-254-7/+125
* Add workaround for log1p(-0.0) on platforms where it's broken.Mark Dickinson2012-08-182-6/+25
* Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors...Antoine Pitrou2012-08-157-39/+75
* Modules/socketmodule.c: netdb_lock: define static.Matthias Klose2012-08-141-1/+1
* Issue #15424: Add a __sizeof__ implementation for array objects.Meador Inge2012-08-111-0/+15
* Make TextIOWrapper's documentation clearer by copying the newline argument's ...Antoine Pitrou2012-08-031-9/+16
* #15512: Declarations reorganizationJesus Cea2012-08-031-21/+23
* Closes #15469: Correct __sizeof__ support for dequeJesus Cea2012-08-031-1/+20
* Closes #15512: Correct __sizeof__ support for parserJesus Cea2012-08-031-2/+21
* Issue #15538: Fix compilation of the getnameinfo() / getaddrinfo() emulation ...Antoine Pitrou2012-08-022-2/+2
* Issue #15489: Add a __sizeof__ implementation for BytesIO objects.Antoine Pitrou2012-07-291-0/+12
* Issue #15487: Add a __sizeof__ implementation for buffered I/O objects.Antoine Pitrou2012-07-291-0/+14
* Issue #15402: Simplify Struct.__sizeof__ and make tests more precise.Meador Inge2012-07-291-6/+2
* Issue #15402: Add a __sizeof__ method to struct.Struct.Meador Inge2012-07-231-0/+17
* Issue #6493: Fix handling of c_uint32 bitfields with width of 32 on Windows.Meador Inge2012-07-191-28/+23
* Issue #15247: FileIO now raises an error when given a file descriptor pointin...Antoine Pitrou2012-07-061-12/+5
* Fix closes issue # 15033 - Return the proper exitcode for failure when module...Senthil Kumaran2012-07-051-1/+1
* Closes #14591: Random.jumpahead could produce an invalid MT state on 64-bit m...Mark Dickinson2012-06-301-2/+17
* Issue #5067: improve some json error messages.Antoine Pitrou2012-06-281-4/+4
* Issue #15219: Fix a reference leak when hashlib.new() is called withAmaury Forgeot d'Arc2012-06-281-0/+1
* Remove useless test (flowinfo is unsigned).Charles-François Natali2012-06-231-2/+2
* #10053: Don't close FDs when FileIO.__init__ failsHynek Schlawack2012-06-211-6/+6
* Issue #10133: Make multiprocessing deallocate buffer if socket read fails.Richard Oudkerk2012-06-111-13/+16
* Issue #14775: Fix a potential quadratic dict build-up due to the garbage coll...Antoine Pitrou2012-05-281-3/+57
* Issue #9041: raised exception is misleadingMeador Inge2012-05-281-25/+5
* #4841: Fix FileIO constructor to honor closefd when called repeatedlyHynek Schlawack2012-05-251-3/+7
* Issue #14888: Fix misbehaviour of the _md5 module when called on data larger ...Antoine Pitrou2012-05-231-3/+14
* Issue #14572: Prevent build failures with pre-3.5.0 versions ofNed Deily2012-05-201-2/+2
* Issue #14829: Fix bisect issues under 64-bit Windows.Antoine Pitrou2012-05-161-1/+1
* Issue #14662: Prevent shutil failures on OS X when destination does notNed Deily2012-05-111-0/+3
* Fix for issue 14725 for 2.7 branchRichard Oudkerk2012-05-051-0/+1
* Improve docstringRaymond Hettinger2012-04-271-7/+6
* Remove accidentally-committed debugging code.Mark Dickinson2012-04-151-3/+0
* Issue 13496: Fix bisect.bisect overflow bug for large collections.Mark Dickinson2012-04-151-2/+11
* protect this call, tooBenjamin Peterson2012-04-021-1/+1
* prevent writing to stderr from messing up the exception state (closes #14474)Benjamin Peterson2012-04-021-0/+3
* Issue #14437: Fix building the _io module under Cygwin.Antoine Pitrou2012-03-311-1/+1
* Fixes Issue 14234: fix for the previous commit, keep compilation whenGregory P. Smith2012-03-152-0/+7
* Fixes Issue #14234: CVE-2012-0876: Randomize hashes of xml attributesGregory P. Smith2012-03-144-59/+130