| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #20152: Port pyexpat to Argument Clinic. | Brett Cannon | 2014-08-22 | 1 | -154/+471 |
|
|
* | Add a missing Argument Clinic file | Brett Cannon | 2014-08-22 | 1 | -0/+73 |
|
|
* | Issue #20152: Port the pwd module to Argument Clinic. | Brett Cannon | 2014-08-22 | 1 | -26/+46 |
|
|
* | Fix a missing #include. | Brett Cannon | 2014-08-22 | 1 | -0/+2 |
|
|
* | Issue #20152: Port the spwd module to Argument Clinic. | Brett Cannon | 2014-08-22 | 2 | -17/+100 |
|
|
* | Issue #20152: Convert the grp module to Argument Clinic. | Brett Cannon | 2014-08-22 | 2 | -26/+140 |
|
|
* | Issue #20152: Convert _multibytecodecs to Argument Clinic. | Brett Cannon | 2014-08-22 | 2 | -142/+492 |
|
|
* | Issue #15696: Add a __sizeof__ implementation for mmap objects on Windows. | Serhiy Storchaka | 2014-08-19 | 1 | -0/+16 |
|\ |
|
| * | Issue #15696: Add a __sizeof__ implementation for mmap objects on Windows. | Serhiy Storchaka | 2014-08-19 | 1 | -0/+16 |
|
|
* | | Issue #22207: Fix "comparison between signed and unsigned integers" warning in | Victor Stinner | 2014-08-17 | 5 | -7/+8 |
|
|
* | | _pickle: Optimize raw_unicode_escape(), use directly a bytes object, don't use | Victor Stinner | 2014-08-17 | 1 | -10/+9 |
|
|
* | | Issue #22218: Fix "comparison between signed and unsigned integers" warning in | Victor Stinner | 2014-08-17 | 1 | -1/+1 |
|
|
* | | Issue #22218: Fix "comparison between signed and unsigned integers" warnings in | Victor Stinner | 2014-08-17 | 1 | -10/+11 |
|
|
* | | Issue #22218: Fix "comparison between signed and unsigned integers" warnings in | Victor Stinner | 2014-08-17 | 1 | -5/+6 |
|
|
* | | Issue #22156: simplify _tracemalloc.c, use an int for the MAX_NFRAME constant | Victor Stinner | 2014-08-16 | 1 | -6/+6 |
|
|
* | | Issue #22156: Fix some "comparison between signed and unsigned integers" | Victor Stinner | 2014-08-15 | 13 | -21/+24 |
|
|
* | | Issue #15381: Optimized line reading in io.BytesIO. | Serhiy Storchaka | 2014-08-14 | 1 | -29/+27 |
|
|
* | | - Merge 3.4 | doko@ubuntu.com | 2014-08-09 | 2 | -3/+26 |
|\ \
| |/ |
|
| * | - Issue #22176: Fix build failure on ARM with -Werror=declaration-after-stat... | doko@ubuntu.com | 2014-08-09 | 2 | -3/+26 |
|
|
* | | merge 3.4. | doko@ubuntu.com | 2014-08-09 | 2 | -2/+2 |
|\ \
| |/ |
|
| * | - Issue #22176: Add src/x86/win32.S for x86 libffi builds. | doko@ubuntu.com | 2014-08-09 | 2 | -2/+2 |
|
|
* | | - Issue #22176: Update the ctypes module's libffi to v3.1. This release | doko@ubuntu.com | 2014-08-09 | 135 | -13698/+28236 |
|\ \
| |/ |
|
| * | - Issue #22176: Update the ctypes module's libffi to v3.1. This release | doko@ubuntu.com | 2014-08-09 | 135 | -13698/+28236 |
|
|
* | | Issue #22161: Conformed arguments type checks in ctype to actually supported | Serhiy Storchaka | 2014-08-09 | 2 | -25/+8 |
|\ \
| |/ |
|
| * | Issue #22161: Conformed arguments type checks in ctype to actually supported | Serhiy Storchaka | 2014-08-09 | 2 | -25/+8 |
|
|
* | | Issue #22116: C functions and methods (of the 'builtin_function_or_method' ty... | Antoine Pitrou | 2014-08-06 | 1 | -0/+16 |
|
|
* | | Issue #21975: Fixed crash when using uninitialized sqlite3.Row (in particular | Serhiy Storchaka | 2014-08-06 | 1 | -11/+17 |
|\ \
| |/ |
|
| * | Issue #21975: Fixed crash when using uninitialized sqlite3.Row (in particular | Serhiy Storchaka | 2014-08-06 | 1 | -11/+17 |
|
|
* | | Closes #22136: Fix MSVC compiler warnings introduced by #22085 | Zachary Ware | 2014-08-05 | 1 | -7/+7 |
|
|
* | | Issue #22127: fix typo. | Martin v. Löwis | 2014-08-05 | 1 | -1/+1 |
|
|
* | | Issue #22127: Bypass IDNA for pure-ASCII host names (in particular for numeri... | Martin v. Löwis | 2014-08-05 | 1 | -10/+75 |
|
|
* | | Issue #22120: For functions using an unsigned integer return converter, | Larry Hastings | 2014-08-05 | 2 | -8/+8 |
|
|
* | | More fixes for the unhappy AMD FreeBSD 9 buildbot. Fingers crossed. | Larry Hastings | 2014-08-05 | 1 | -2/+2 |
|
|
* | | Fix for AMD FreeBSD 9 buildbot (hopefully), broken by my last checkin. | Larry Hastings | 2014-08-05 | 1 | -1/+0 |
|
|
* | | Issue #20170: Convert posixmodule to use Argument Clinic. | Larry Hastings | 2014-08-05 | 1 | -2929/+8298 |
|
|
* | | Issue #18395: Rename ``_Py_char2wchar()`` to :c:func:`Py_DecodeLocale`, rename | Victor Stinner | 2014-08-01 | 2 | -10/+10 |
|
|
* | | timemodule.c: Replace PyExc_IOError with PyExc_OSError | Victor Stinner | 2014-07-31 | 1 | -5/+5 |
|
|
* | | Issue #22085: Dropped support of Tk 8.3 in Tkinter. | Serhiy Storchaka | 2014-07-30 | 1 | -26/+13 |
|
|
* | | Issue #21580: Now Tkinter correctly handles bytes arguments passed to Tk. | Serhiy Storchaka | 2014-07-30 | 1 | -2/+2 |
|\ \
| |/ |
|
| * | Issue #21580: Now Tkinter correctly handles bytes arguments passed to Tk. | Serhiy Storchaka | 2014-07-30 | 1 | -2/+2 |
|
|
* | | Issue #22003: When initialized from a bytes object, io.BytesIO() now | Antoine Pitrou | 2014-07-29 | 1 | -51/+151 |
|
|
* | | Issue #22018: On Windows, signal.set_wakeup_fd() now also supports sockets. | Victor Stinner | 2014-07-29 | 1 | -18/+165 |
|
|
* | | Issue #22054: Add os.get_blocking() and os.set_blocking() functions to get and | Victor Stinner | 2014-07-29 | 1 | -0/+54 |
|
|
* | | Issue #21704: Merge. | Richard Oudkerk | 2014-07-28 | 1 | -0/+2 |
|\ \
| |/ |
|
| * | Issue #21704: Fix build error for _multiprocessing when semaphores | Richard Oudkerk | 2014-07-28 | 1 | -0/+2 |
|
|
* | | Issue #22076: Minor grammar fix. | Berker Peksag | 2014-07-27 | 1 | -2/+2 |
|
|
* | | Issue #20173: Convert sha1, sha256, sha512 and md5 to ArgumentClinic. | Martin v. Löwis | 2014-07-27 | 4 | -158/+696 |
|
|
* | | (Merge 3.4) Fix repr(_socket.socket) on Windows 64-bit: don't fail with | Victor Stinner | 2014-07-26 | 1 | -2/+9 |
|\ \
| |/ |
|
| * | Fix repr(_socket.socket) on Windows 64-bit: don't fail with OverflowError | Victor Stinner | 2014-07-26 | 1 | -2/+9 |
|
|
* | | merge | Raymond Hettinger | 2014-07-25 | 1 | -7/+7 |
|\ \
| |/ |
|