summaryrefslogtreecommitdiff
path: root/Modules
Commit message (Expand)AuthorAgeFilesLines
* Issue #8914: fix various warnings from the Clang static analyzer v254.Brett Cannon2011-02-2217-43/+24
* Issue #10924: Adding salt and Modular Crypt Format to crypt library.Sean Reifscheider2011-02-222-3/+3
* Issue #4681: Allow mmap() to work on file sizes and offsets larger thanAntoine Pitrou2011-02-211-48/+59
* Fix compile error under MSVC introduced by r88460.Antoine Pitrou2011-02-211-2/+2
* Fix issues on 32-bit systems introduced by r88460Antoine Pitrou2011-02-211-6/+6
* Issue #10276: Fix the results of zlib.crc32() and zlib.adler32() on buffersAntoine Pitrou2011-02-211-2/+22
* #941346: Fix broken shared library build on AIX. Patch by Sebastien Sable, re...Georg Brandl2011-02-151-1/+1
* Issue #11135: Remove redundant doc field from PyType_Spec.Martin v. Löwis2011-02-111-6/+4
* Issue #11067: Add PyType_GetFlags, to support PyUnicode_CheckMartin v. Löwis2011-02-051-1/+7
* There was a possibility that the initialization of _sqlite, when it failed,Brett Cannon2011-02-041-1/+1
* Issue #8275: Fix passing of callback arguments with ctypes under Win64.Antoine Pitrou2011-01-312-1/+15
* Issue #10989: Fix a crash on SSLContext.load_verify_locations(None, True).Victor Stinner2011-01-291-1/+1
* Issue #11004: Repair edge case in deque.count().Raymond Hettinger2011-01-251-4/+7
* Issue #10987: Fix the recursion limit handling in the _pickle module.Antoine Pitrou2011-01-231-12/+19
* Issue #10955: zipimport uses ASCII at bootstrapVictor Stinner2011-01-221-1/+19
* Issue #10955: Fix a potential crash when trying to mmap() a file past itsAntoine Pitrou2011-01-201-0/+11
* Issue #10898: Allow compiling the posix module when the C library definesAntoine Pitrou2011-01-191-0/+2
* Fix mmap and test_mmap under Windows too (followup to r88022)v3.2rc1Antoine Pitrou2011-01-151-0/+1
* Issue #10916: mmap should not segfault when a file is mapped using 0 asAntoine Pitrou2011-01-151-1/+1
* Remove call to nonexisting function (relic from Python 2.x) under #ifdef __IN...Eli Bendersky2011-01-141-1/+0
* Issue #5109: array.array constructor will now use fast code whenAlexander Belopolsky2011-01-111-5/+15
* Issue #1726687: time.mktime() will now correctly compute value oneAlexander Belopolsky2011-01-111-1/+4
* Issue #9611: remove useless and dangerous explicit conversion to size_tVictor Stinner2011-01-112-3/+3
* Issue #9566: Fix pyparse.xmlparser.ParseFile()Victor Stinner2011-01-101-22/+12
* Issue #10872: The repr() of TextIOWrapper objects now includes the modeAntoine Pitrou2011-01-091-7/+34
* Issue #10864: limit year to [1; 9999] for strftime() on SolarisVictor Stinner2011-01-081-1/+1
* Issue #1777412: Remove all limits on tm_year from time.strftime()Victor Stinner2011-01-081-8/+1
* Issue #1777412: strftime() accepts year >= 1 instead of year >= 1900Victor Stinner2011-01-081-6/+12
* Fixed error handling branches. ThanksAlexander Belopolsky2011-01-081-14/+19
* Issue #1777412: extended year range of strftime down to 1000.Alexander Belopolsky2011-01-082-8/+8
* Issue #10827: Changed the rules for 2-digit years. The time.asctimeAlexander Belopolsky2011-01-071-15/+32
* Issue #10841: set binary mode on files; the parser translates newlinesVictor Stinner2011-01-072-3/+11
* Further simplify gettmarg()Alexander Belopolsky2011-01-061-19/+5
* Issue #7858: Raise an error properly when os.utime() fails under WindowsAntoine Pitrou2011-01-061-0/+1
* Use PyOS_snprintf for better portability.Alexander Belopolsky2011-01-061-5/+5
* - time.accept2dyear = True is now equivalent to time.accept2dyear = 1Alexander Belopolsky2011-01-051-34/+19
* Issue #10756: atexit normalizes the exception before displaying it.Victor Stinner2011-01-051-0/+1
* test_unicode: use ctypes to test PyUnicode_FromFormat()Victor Stinner2011-01-051-12/+0
* Issue #9566: PyUnicode_FromFormatV() doesn't support %zi, use %zd insteadVictor Stinner2011-01-041-1/+1
* Issue #9566: explain why (int)len cannot underflowVictor Stinner2011-01-041-0/+1
* Whitespace cleanupAlexander Belopolsky2011-01-041-2/+1
* Issue #8013: time.asctime and time.ctime no longer call system asctimeAlexander Belopolsky2011-01-041-22/+39
* Issue #9566: use Py_ssize_t instead of intVictor Stinner2011-01-0410-26/+23
* Issue #8650: zlib.compress() and zlib.decompress() raise an OverflowError ifVictor Stinner2011-01-041-4/+18
* Issue #9015, #9611: FileIO.readinto(), FileIO.write() and os.write() clamp theVictor Stinner2011-01-042-6/+27
* Issue #10333: Remove ancient GC API, which has been deprecated sinceAntoine Pitrou2011-01-042-9/+1
* Issue #10806, issue #9905: Fix subprocess pipes when some of the standardAntoine Pitrou2011-01-031-8/+21
* Make C helper function more closely match the pure python version, and add te...Raymond Hettinger2011-01-031-22/+49
* #8278: In the Windows implementation of stat() and utime(),Amaury Forgeot d'Arc2011-01-031-12/+21
* #8013 follow-up:Georg Brandl2011-01-021-7/+13