Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #23804: Merge SSL recv() fix from 3.5 | Martin Panter | 2016-07-11 | 1 | -0/+8 |
|\ | |||||
| * | Issue #23804: Fix SSL zero-length recv() calls to not block and raise EOF | Martin Panter | 2016-07-11 | 1 | -0/+8 |
| | | |||||
* | | Issue #22624: Python 3 requires clock() to build | Victor Stinner | 2016-07-08 | 1 | -0/+1 |
| | | |||||
* | | - Issue #27332: Fixed the type of the first argument of module-level functions | Serhiy Storchaka | 2016-07-07 | 59 | -1509/+1489 |
|\ \ | |/ | | | | | generated by Argument Clinic. Patch by Petr Viktorin. | ||||
| * | Issue #27332: Fixed the type of the first argument of module-level functions | Serhiy Storchaka | 2016-07-07 | 59 | -1505/+1485 |
| | | | | | | | | generated by Argument Clinic. Patch by Petr Viktorin. | ||||
* | | merge 3.5 (#24557) | Benjamin Peterson | 2016-07-07 | 2 | -5/+5 |
|\ \ | |/ | |||||
| * | assume egd unless OPENSSL_NO_EGD is defined—remove configure check (closes ↵ | Benjamin Peterson | 2016-07-07 | 2 | -5/+5 |
| | | | | | | | | #24557) | ||||
* | | Issue #26243: Only the level argument to zlib.compress() is keyword argument | Serhiy Storchaka | 2016-06-25 | 2 | -4/+5 |
| | | | | | | | | now. The first argument is positional-only. | ||||
* | | Remove duplicate AF_INET6 addition | Martin Panter | 2016-06-25 | 1 | -3/+0 |
| | | |||||
* | | Issue #27038: Expose DirEntry as os.DirEntry. | Brett Cannon | 2016-06-24 | 1 | -0/+1 |
| | | | | | | | | Thanks to Jelle Zijlstra for the code portion of the patch. | ||||
* | | Issue #27186: Update os.fspath()/PyOS_FSPath() to check the return | Brett Cannon | 2016-06-24 | 1 | -2/+11 |
| | | | | | | | | | | | | | | type of __fspath__(). As part of this change, also make sure that the pure Python implementation of os.fspath() is tested. | ||||
* | | Fixed integer overflow in array.buffer_info(). | Serhiy Storchaka | 2016-06-23 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Fixed integer overflow in array.buffer_info(). | Serhiy Storchaka | 2016-06-23 | 1 | -1/+1 |
| | | |||||
* | | Merge 3.5. | Stefan Krah | 2016-06-20 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Issue #27006: Do not use PyDec_CheckExact() on a type. | Stefan Krah | 2016-06-20 | 1 | -1/+1 |
| | | |||||
* | | Merge 3.5. | Stefan Krah | 2016-06-20 | 1 | -2/+8 |
|\ \ | |/ | |||||
| * | Issue #27006: from_float(): call the subclass' __new__() and __init__(). | Stefan Krah | 2016-06-20 | 1 | -2/+8 |
| | | |||||
* | | Use macros instead of corresponding functions (they never fail) in _tkinter.c. | Serhiy Storchaka | 2016-06-19 | 1 | -22/+26 |
| | | |||||
* | | Issue #27177: Match objects in the re module now support index-like objects | Serhiy Storchaka | 2016-06-18 | 1 | -2/+3 |
| | | | | | | | | as group indices. Based on patches by Jeroen Demeyer and Xiang Zhang. | ||||
* | | Issue #26536: Use spaces instead of tabs | Berker Peksag | 2016-06-18 | 1 | -4/+4 |
| | | |||||
* | | Issue #27343: Fixed error message for conflicting initializers of ↵ | Serhiy Storchaka | 2016-06-18 | 1 | -7/+2 |
|\ \ | |/ | | | | | ctypes.Structure. | ||||
| * | Issue #27343: Fixed error message for conflicting initializers of ↵ | Serhiy Storchaka | 2016-06-18 | 1 | -7/+2 |
| | | | | | | | | ctypes.Structure. | ||||
* | | Issue #26536: socket.ioctl now supports SIO_LOOPBACK_FAST_PATH. Patch by ↵ | Steve Dower | 2016-06-17 | 1 | -3/+23 |
| | | | | | | | | Daniel Stokes. | ||||
* | | ctypes: the type of b_size is Py_ssize_t. | Serhiy Storchaka | 2016-06-17 | 1 | -4/+4 |
|\ \ | |/ | |||||
| * | ctypes: the type of b_size is Py_ssize_t. | Serhiy Storchaka | 2016-06-17 | 1 | -4/+4 |
| | | |||||
* | | Issue #27330: Fixed possible leaks in the ctypes module. | Serhiy Storchaka | 2016-06-16 | 3 | -22/+31 |
|\ \ | |/ | |||||
| * | Issue #27330: Fixed possible leaks in the ctypes module. | Serhiy Storchaka | 2016-06-16 | 3 | -22/+31 |
| | | |||||
* | | Issue #26862: SYS_getdents64 does not need to be defined on android API 21. | Xavier de Gaye | 2016-06-15 | 1 | -2/+1 |
| | | |||||
* | | Issue #16864: Cursor.lastrowid now supports REPLACE statement | Berker Peksag | 2016-06-14 | 1 | -1/+3 |
| | | | | | | | | Initial patch by Alex LordThorsen. | ||||
* | | merge 3.5 | Benjamin Peterson | 2016-06-14 | 2 | -4/+4 |
|\ \ | |/ | |||||
| * | merge 3.4 | Benjamin Peterson | 2016-06-14 | 2 | -4/+4 |
| |\ | |||||
| | * | sync ordering of stddef.h includes with expat 2.1.1 | Benjamin Peterson | 2016-06-14 | 2 | -4/+4 |
| | | | |||||
* | | | - Modules/_collectionsmodule.c: Mark one more internal symbol as static. | doko@ubuntu.com | 2016-06-14 | 1 | -1/+1 |
| | | | |||||
* | | | Issue #16182: Merge readline locale fix from 3.5 | Martin Panter | 2016-06-14 | 1 | -38/+94 |
|\ \ \ | |/ / | |||||
| * | | Issue #16182: Fix readline begidx, endidx, and use locale encoding | Martin Panter | 2016-06-14 | 1 | -38/+94 |
| | | | | | | | | | | | | Based on patch by Serhiy Storchaka. | ||||
* | | | - Comment out socket (SO_REUSEPORT) and posix (O_SHLOCK, O_EXLOCK) constants | doko@ubuntu.com | 2016-06-13 | 2 | -0/+4 |
| | | | | | | | | | | | | | | | exposed on the API which are not implemented on GNU/Hurd. They would not work at runtime anyway. | ||||
* | | | Merge from 3.5 | Berker Peksag | 2016-06-12 | 1 | -1/+1 |
|\ \ \ | |/ / | |||||
| * | | Fix typo in _sqlite/module.h | Berker Peksag | 2016-06-12 | 1 | -1/+1 |
| | | | |||||
* | | | Issue #27190: Merge from 3.5 | Berker Peksag | 2016-06-12 | 1 | -0/+4 |
|\ \ \ | |/ / | |||||
| * | | Issue #27190: Raise NotSupportedError if sqlite3 is older than 3.3.1 | Berker Peksag | 2016-06-12 | 1 | -0/+4 |
| | | | | | | | | | | | | Patch by Dave Sawyer. | ||||
* | | | Issue #25455: Fixed a crash in repr of recursive functools.partial objects. | Serhiy Storchaka | 2016-06-12 | 1 | -17/+22 |
|\ \ \ | |/ / | |||||
| * | | Issue #25455: Fixed a crash in repr of recursive functools.partial objects. | Serhiy Storchaka | 2016-06-12 | 1 | -17/+22 |
| | | | |||||
* | | | Issue #25455: Fixed a crash in repr of ElementTree.Element with recursive tag. | Serhiy Storchaka | 2016-06-12 | 1 | -3/+16 |
|\ \ \ | |/ / | |||||
| * | | Issue #25455: Fixed a crash in repr of ElementTree.Element with recursive tag. | Serhiy Storchaka | 2016-06-12 | 1 | -3/+16 |
| | | | |||||
* | | | merge 3.5 (#26556) | Benjamin Peterson | 2016-06-11 | 3 | -6/+24 |
|\ \ \ | |/ / | |||||
| * | | merge 3.4 (#26556) | Benjamin Peterson | 2016-06-11 | 3 | -6/+24 |
| |\ \ | | |/ | |||||
| | * | upgrade expt to 2.1.1 (closes #26556) | Benjamin Peterson | 2016-06-11 | 3 | -6/+24 |
| | | | |||||
* | | | Issue #27186: Add os.PathLike support to DirEntry | Brett Cannon | 2016-06-10 | 1 | -0/+10 |
| | | | | | | | | | | | | Initial patch thanks to Jelle Zijlstra. | ||||
* | | | Issue #26282: PyArg_ParseTupleAndKeywords() and Argument Clinic now support | Serhiy Storchaka | 2016-06-09 | 1 | -0/+18 |
| | | | | | | | | | | | | positional-only and keyword parameters in the same function. | ||||
* | | | Clarify documentation for os.fspath(). | Brett Cannon | 2016-06-09 | 2 | -8/+8 |
| | | |