| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #11067: Add PyType_GetFlags, to support PyUnicode_Check | Martin v. Löwis | 2011-02-05 | 1 | -1/+7 |
|
|
* | There was a possibility that the initialization of _sqlite, when it failed, | Brett Cannon | 2011-02-04 | 1 | -1/+1 |
|
|
* | Issue #8275: Fix passing of callback arguments with ctypes under Win64. | Antoine Pitrou | 2011-01-31 | 2 | -1/+15 |
|
|
* | Issue #10989: Fix a crash on SSLContext.load_verify_locations(None, True). | Victor Stinner | 2011-01-29 | 1 | -1/+1 |
|
|
* | Issue #11004: Repair edge case in deque.count(). | Raymond Hettinger | 2011-01-25 | 1 | -4/+7 |
|
|
* | Issue #10987: Fix the recursion limit handling in the _pickle module. | Antoine Pitrou | 2011-01-23 | 1 | -12/+19 |
|
|
* | Issue #10955: zipimport uses ASCII at bootstrap | Victor Stinner | 2011-01-22 | 1 | -1/+19 |
|
|
* | Issue #10955: Fix a potential crash when trying to mmap() a file past its | Antoine Pitrou | 2011-01-20 | 1 | -0/+11 |
|
|
* | Issue #10898: Allow compiling the posix module when the C library defines | Antoine Pitrou | 2011-01-19 | 1 | -0/+2 |
|
|
* | Fix mmap and test_mmap under Windows too (followup to r88022)v3.2rc1 | Antoine Pitrou | 2011-01-15 | 1 | -0/+1 |
|
|
* | Issue #10916: mmap should not segfault when a file is mapped using 0 as | Antoine Pitrou | 2011-01-15 | 1 | -1/+1 |
|
|
* | Remove call to nonexisting function (relic from Python 2.x) under #ifdef __IN... | Eli Bendersky | 2011-01-14 | 1 | -1/+0 |
|
|
* | Issue #5109: array.array constructor will now use fast code when | Alexander Belopolsky | 2011-01-11 | 1 | -5/+15 |
|
|
* | Issue #1726687: time.mktime() will now correctly compute value one | Alexander Belopolsky | 2011-01-11 | 1 | -1/+4 |
|
|
* | Issue #9611: remove useless and dangerous explicit conversion to size_t | Victor Stinner | 2011-01-11 | 2 | -3/+3 |
|
|
* | Issue #9566: Fix pyparse.xmlparser.ParseFile() | Victor Stinner | 2011-01-10 | 1 | -22/+12 |
|
|
* | Issue #10872: The repr() of TextIOWrapper objects now includes the mode | Antoine Pitrou | 2011-01-09 | 1 | -7/+34 |
|
|
* | Issue #10864: limit year to [1; 9999] for strftime() on Solaris | Victor Stinner | 2011-01-08 | 1 | -1/+1 |
|
|
* | Issue #1777412: Remove all limits on tm_year from time.strftime() | Victor Stinner | 2011-01-08 | 1 | -8/+1 |
|
|
* | Issue #1777412: strftime() accepts year >= 1 instead of year >= 1900 | Victor Stinner | 2011-01-08 | 1 | -6/+12 |
|
|
* | Fixed error handling branches. Thanks | Alexander Belopolsky | 2011-01-08 | 1 | -14/+19 |
|
|
* | Issue #1777412: extended year range of strftime down to 1000. | Alexander Belopolsky | 2011-01-08 | 2 | -8/+8 |
|
|
* | Issue #10827: Changed the rules for 2-digit years. The time.asctime | Alexander Belopolsky | 2011-01-07 | 1 | -15/+32 |
|
|
* | Issue #10841: set binary mode on files; the parser translates newlines | Victor Stinner | 2011-01-07 | 2 | -3/+11 |
|
|
* | Further simplify gettmarg() | Alexander Belopolsky | 2011-01-06 | 1 | -19/+5 |
|
|
* | Issue #7858: Raise an error properly when os.utime() fails under Windows | Antoine Pitrou | 2011-01-06 | 1 | -0/+1 |
|
|
* | Use PyOS_snprintf for better portability. | Alexander Belopolsky | 2011-01-06 | 1 | -5/+5 |
|
|
* | - time.accept2dyear = True is now equivalent to time.accept2dyear = 1 | Alexander Belopolsky | 2011-01-05 | 1 | -34/+19 |
|
|
* | Issue #10756: atexit normalizes the exception before displaying it. | Victor Stinner | 2011-01-05 | 1 | -0/+1 |
|
|
* | test_unicode: use ctypes to test PyUnicode_FromFormat() | Victor Stinner | 2011-01-05 | 1 | -12/+0 |
|
|
* | Issue #9566: PyUnicode_FromFormatV() doesn't support %zi, use %zd instead | Victor Stinner | 2011-01-04 | 1 | -1/+1 |
|
|
* | Issue #9566: explain why (int)len cannot underflow | Victor Stinner | 2011-01-04 | 1 | -0/+1 |
|
|
* | Whitespace cleanup | Alexander Belopolsky | 2011-01-04 | 1 | -2/+1 |
|
|
* | Issue #8013: time.asctime and time.ctime no longer call system asctime | Alexander Belopolsky | 2011-01-04 | 1 | -22/+39 |
|
|
* | Issue #9566: use Py_ssize_t instead of int | Victor Stinner | 2011-01-04 | 10 | -26/+23 |
|
|
* | Issue #8650: zlib.compress() and zlib.decompress() raise an OverflowError if | Victor Stinner | 2011-01-04 | 1 | -4/+18 |
|
|
* | Issue #9015, #9611: FileIO.readinto(), FileIO.write() and os.write() clamp the | Victor Stinner | 2011-01-04 | 2 | -6/+27 |
|
|
* | Issue #10333: Remove ancient GC API, which has been deprecated since | Antoine Pitrou | 2011-01-04 | 2 | -9/+1 |
|
|
* | Issue #10806, issue #9905: Fix subprocess pipes when some of the standard | Antoine Pitrou | 2011-01-03 | 1 | -8/+21 |
|
|
* | Make C helper function more closely match the pure python version, and add te... | Raymond Hettinger | 2011-01-03 | 1 | -22/+49 |
|
|
* | #8278: In the Windows implementation of stat() and utime(), | Amaury Forgeot d'Arc | 2011-01-03 | 1 | -12/+21 |
|
|
* | #8013 follow-up: | Georg Brandl | 2011-01-02 | 1 | -7/+13 |
|
|
* | issue10802: fallback to pipe+fcntl when the pipe2 syscall fails with errno EN... | Gregory P. Smith | 2011-01-02 | 1 | -17/+29 |
|
|
* | Issue #8013: Fixed time.asctime segfault when OS's asctime fails | Alexander Belopolsky | 2011-01-02 | 1 | -0/+4 |
|
|
* | Add sys.flags.quiet attribute for the new -q option, as noted missing by Eric... | Georg Brandl | 2010-12-28 | 1 | -3/+2 |
|
|
* | Fix #9333. The symlink function is always available now, raising OSError | Brian Curtin | 2010-12-28 | 1 | -19/+13 |
|
|
* | Issue #10783: struct.pack() doesn't encode implicitly unicode to UTF-8 | Victor Stinner | 2010-12-28 | 1 | -21/+6 |
|
|
* | Issue #10254: Fixed a crash and a regression introduced by the implementation... | Alexander Belopolsky | 2010-12-23 | 1 | -4/+9 |
|
|
* | fix a compiler warning about err_msg potentially being used uninitialized. | Gregory P. Smith | 2010-12-22 | 1 | -1/+1 |
|
|
* | Issue #10750: The `raw` attribute of buffered IO objects is now read-only. | Antoine Pitrou | 2010-12-21 | 1 | -3/+3 |
|
|