| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #20306: Android is the only system that returns NULL for the pw_passwd | Stefan Krah | 2016-04-26 | 1 | -1/+1 |
|
|
* | Issue #20306: The pw_gecos and pw_passwd fields are not required by POSIX. | Stefan Krah | 2016-04-25 | 1 | -0/+8 |
|
|
* | Issue #26846: Workaround for non-standard stdlib.h on Android. | Stefan Krah | 2016-04-25 | 5 | -6/+4 |
|
|
* | Issue #26822: itemgetter, attrgetter and methodcaller objects no longer | Serhiy Storchaka | 2016-04-23 | 1 | -0/+6 |
|\ |
|
| * | Issue #26822: itemgetter, attrgetter and methodcaller objects no longer | Serhiy Storchaka | 2016-04-23 | 1 | -0/+6 |
|
|
* | | Merge doc and comment fixes from 3.5 | Martin Panter | 2016-04-19 | 1 | -2/+2 |
|\ \
| |/ |
|
| * | Fix spelling (inital), grammar (may translates) in documentation, comments | Martin Panter | 2016-04-19 | 1 | -2/+2 |
|
|
* | | Issue #26778: Fixed "a/an/and" typos in code comment, documentation and error | Serhiy Storchaka | 2016-04-17 | 9 | -10/+10 |
|\ \
| |/ |
|
| * | Issue #26778: Fixed "a/an/and" typos in code comment and documentation. | Serhiy Storchaka | 2016-04-17 | 6 | -6/+6 |
|
|
* | | Merge typo fixes from 3.5 | Martin Panter | 2016-04-16 | 2 | -4/+4 |
|\ \
| |/ |
|
| * | Fix typos in code comments and documentation | Martin Panter | 2016-04-16 | 2 | -4/+4 |
|
|
* | | merge heads | Gregory P. Smith | 2016-04-15 | 1 | -8/+8 |
|\ \
| |/ |
|
| * | Issue #26535: Correct docs regarding the struct buffer size | Martin Panter | 2016-04-15 | 1 | -8/+8 |
|
|
* | | Issue #15984: Merge PyUnicode doc from 3.5 | Martin Panter | 2016-04-15 | 3 | -3/+3 |
|\ \
| |/ |
|
| * | Correct “an” → “a” with “Unicode”, “user”, “UTF”, etc | Martin Panter | 2016-04-15 | 3 | -3/+3 |
|
|
* | | Fix unused variable 'libver' warning in Modules/_ssl.c | Berker Peksag | 2016-04-14 | 1 | -0/+2 |
|\ \
| |/ |
|
| * | Fix unused variable 'libver' warning in Modules/_ssl.c | Berker Peksag | 2016-04-14 | 1 | -0/+2 |
|
|
* | | Issues #26716, #26057: Regenerate Argument Clinic code. | Serhiy Storchaka | 2016-04-14 | 4 | -34/+34 |
|\ \
| |/ |
|
| * | Issue #26716: Regenerate Argument Clinic code. | Serhiy Storchaka | 2016-04-14 | 2 | -3/+3 |
|
|
* | | Issue #26057: Got rid of nonneeded use of PyUnicode_FromObject(). | Serhiy Storchaka | 2016-04-13 | 2 | -210/+65 |
|
|
* | | Issue #26200: Restored more safe usages of Py_SETREF. | Serhiy Storchaka | 2016-04-11 | 2 | -7/+7 |
|\ \
| |/ |
|
| * | Issue #26200: Restored more safe usages of Py_SETREF. | Serhiy Storchaka | 2016-04-11 | 1 | -3/+3 |
|
|
* | | Issue #26685: Raise OSError if closing a socket fails | Martin Panter | 2016-04-11 | 1 | -1/+5 |
|
|
* | | Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREF | Serhiy Storchaka | 2016-04-10 | 13 | -30/+30 |
|\ \
| |/ |
|
| * | Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREF | Serhiy Storchaka | 2016-04-10 | 11 | -25/+25 |
|
|
* | | Issue #26719: More efficient formatting of ints and floats in json. | Serhiy Storchaka | 2016-04-10 | 1 | -52/+4 |
|\ \
| |/ |
|
| * | Issue #26719: More efficient formatting of ints and floats in json. | Serhiy Storchaka | 2016-04-10 | 1 | -52/+4 |
|
|
* | | Merge 3.5: fcntl doc | Victor Stinner | 2016-04-09 | 1 | -1/+1 |
|\ \
| |/ |
|
| * | Update fcntl doc: replace IOError with OSError | Victor Stinner | 2016-04-09 | 1 | -1/+1 |
|
|
* | | Issue #26687: Use Py_RETURN_NONE macro in sqlite3 module | Berker Peksag | 2016-04-09 | 4 | -32/+16 |
|
|
* | | Issue #26671: Fixed #ifdef indentation. | Serhiy Storchaka | 2016-04-06 | 1 | -2/+2 |
|
|
* | | Backed out changeset 8dc144e47252 | Serhiy Storchaka | 2016-04-06 | 1 | -26/+2 |
|
|
* | | Issue #26671: Fixed #ifdef indentation. | Serhiy Storchaka | 2016-04-06 | 1 | -2/+26 |
|
|
* | | Issue #26671: Enhanced path_converter. | Serhiy Storchaka | 2016-04-06 | 1 | -56/+50 |
|
|
* | | Issue #22570: Renamed Py_SETREF to Py_XSETREF. | Serhiy Storchaka | 2016-04-06 | 27 | -105/+105 |
|\ \
| |/ |
|
| * | Issue #22570: Renamed Py_SETREF to Py_XSETREF. | Serhiy Storchaka | 2016-04-06 | 22 | -86/+86 |
|
|
* | | Issue #6953: Merge readline doc from 3.5 | Martin Panter | 2016-04-05 | 1 | -16/+16 |
|\ \
| |/ |
|
| * | Issue #6953: Rearrange and expand Readline module documentation | Martin Panter | 2016-04-05 | 1 | -16/+16 |
|
|
* | | Issue #23735: Merge sighandler_t fix from 3.5 | Martin Panter | 2016-04-03 | 1 | -1/+1 |
|\ \
| |/ |
|
| * | Issue #23735: Avoid sighandler_t Gnu-ism | Martin Panter | 2016-04-03 | 1 | -1/+1 |
|
|
* | | Issue #23735: Merge Readline resize handling from 3.5 | Martin Panter | 2016-04-03 | 1 | -0/+31 |
|\ \
| |/ |
|
| * | Issue #23735: Add SIGWINCH handler for Readline 6.3+ support, by Eric Price | Martin Panter | 2016-04-03 | 1 | -0/+31 |
|
|
* | | Merge 3.5 (asyncio) | Victor Stinner | 2016-04-01 | 1 | -0/+6 |
|\ \
| |/ |
|
| * | asyncio: sync overlapped.c with GitHub | Victor Stinner | 2016-04-01 | 1 | -0/+6 |
|
|
* | | Issue #22854: Merge UnsupportedOperation fixes from 3.5 | Martin Panter | 2016-03-31 | 3 | -15/+13 |
|\ \
| |/ |
|
| * | Issue #22854: Clarify documentation about UnsupportedOperation and add tests | Martin Panter | 2016-03-31 | 3 | -15/+13 |
|
|
* | | Issue #26492: Exhausted iterator of array.array now conforms with the behavior | Serhiy Storchaka | 2016-03-30 | 1 | -4/+18 |
|
|
* | | Issue #26494: Fixed crash on iterating exhausting iterators. | Serhiy Storchaka | 2016-03-30 | 1 | -6/+10 |
|\ \
| |/ |
|
| * | Issue #26494: Fixed crash on iterating exhausting iterators. | Serhiy Storchaka | 2016-03-30 | 1 | -6/+10 |
|
|
* | | Issue #26644: Merge SSL negative read fix from 3.5 | Martin Panter | 2016-03-27 | 1 | -0/+5 |
|\ \
| |/ |
|