Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Closes #27661: Added tzinfo keyword argument to datetime.combine. | Alexander Belopolsky | 2016-08-02 | 1 | -16/+20 |
| | |||||
* | merge 3.5 (#27656) | Benjamin Peterson | 2016-07-31 | 1 | -0/+6 |
|\ | |||||
| * | all SCHED_ constants are optional (closes #27656) | Benjamin Peterson | 2016-07-31 | 1 | -0/+6 |
| | | |||||
* | | Issue #27626: Merge spelling fixes from 3.5 | Martin Panter | 2016-07-28 | 2 | -2/+2 |
|\ \ | |/ | |||||
| * | Issue #27626: Spelling fixes in docs, comments and internal names | Martin Panter | 2016-07-28 | 2 | -2/+2 |
| | | | | | | | | Based on patch by Ville Skyttä. | ||||
* | | Merge 3.5 (issue #11048) | Victor Stinner | 2016-07-27 | 1 | -2/+4 |
|\ \ | |/ | |||||
| * | ctypes: fix CThunkObject_new() | Victor Stinner | 2016-07-27 | 1 | -2/+4 |
| | | | | | | | | | | | | | | | | | | | | * Initialize restype and flags fields to fix a crash when Python runs on a read-only file system * Use Py_ssize_t type rather than int for the "i" iterator variable * Reorder assignements to be able to more easily check if all fields are initialized Issue #11048. Initial patch written by Marcin Bachry. | ||||
* | | Issue 24773: Added a time_t overflow check. | Alexander Belopolsky | 2016-07-25 | 1 | -1/+8 |
| | | |||||
* | | Issue #7063: Remove dead code from array slice handling | Martin Panter | 2016-07-25 | 1 | -47/+8 |
| | | | | | | | | Patch by Chuck. | ||||
* | | Issue #27591: Merge from 3.5 | Berker Peksag | 2016-07-23 | 1 | -0/+3 |
|\ \ | |/ | |||||
| * | Issue #27591: Set sigint_event to NULL if _PyOS_IsMainThread() returns false | Berker Peksag | 2016-07-23 | 1 | -0/+3 |
| | | | | | | | | Patch by Chris Angelico. | ||||
* | | Issue #27130: Merge zlib 64-bit fixes from 3.5 | Martin Panter | 2016-07-23 | 2 | -397/+378 |
|\ \ | |/ | |||||
| * | Issue #27130: Fix handling of buffers exceeding UINT_MAX in “zlib” module | Martin Panter | 2016-07-23 | 2 | -397/+378 |
| | | | | | | | | Patch by Xiang Zhang. | ||||
* | | Closes issue #24773: Implement PEP 495 (Local Time Disambiguation). | Alexander Belopolsky | 2016-07-22 | 1 | -149/+526 |
| | | |||||
* | | Merge 3.5 (INVALID_SOCKET) | Victor Stinner | 2016-07-22 | 2 | -8/+12 |
|\ \ | |/ | |||||
| * | socket: use INVALID_SOCKET | Victor Stinner | 2016-07-22 | 2 | -7/+12 |
| | | | | | | | | | | | | | | | | * Replace "fd = -1" with "fd = INVALID_SOCKET" * Replace "fd < 0" with "fd == INVALID_SOCKET": SOCKET_T is unsigned on Windows Bug found by Pavel Belikov ("Fragment N1"): http://www.viva64.com/en/b/0414/#ID0ECDAE | ||||
* | | Merge 3.5 (fix internal_select) | Victor Stinner | 2016-07-22 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | socket: Fix internal_select() | Victor Stinner | 2016-07-22 | 1 | -1/+1 |
| | | | | | | | | | | Bug found by Pavel Belikov ("Fragment N1"): http://www.viva64.com/en/b/0414/#ID0ECDAE | ||||
* | | Issue #27567: Expose the POLLRDHUP constant in the select module | Berker Peksag | 2016-07-19 | 1 | -0/+8 |
| | | |||||
* | | add EPOLLEXCLUSIVE | Benjamin Peterson | 2016-07-19 | 1 | -0/+3 |
| | | |||||
* | | expose EPOLLRDHUP (closes #27567) | Benjamin Peterson | 2016-07-19 | 1 | -1/+1 |
| | | |||||
* | | Issue #1621: Avoid signed int negation overflow in audioop | Martin Panter | 2016-07-19 | 1 | -1/+3 |
| | | |||||
* | | Issue #27533: Release GIL in nt._isdir | Steve Dower | 2016-07-18 | 1 | -0/+2 |
|\ \ | |/ | |||||
| * | Issue #27533: Release GIL in nt._isdir | Steve Dower | 2016-07-18 | 1 | -0/+2 |
| | | |||||
* | | Merge 3.5. | Stefan Krah | 2016-07-17 | 1 | -8/+51 |
|\ \ | |/ | |||||
| * | Issue #26974: Fix segfault in the presence of absurd subclassing. Proactively | Stefan Krah | 2016-07-17 | 1 | -3/+47 |
| | | | | | | | | eliminate all internal uses of overridden methods. | ||||
* | | Issue #17711: Fixed unpickling by the persistent ID with protocol 0. | Serhiy Storchaka | 2016-07-17 | 1 | -12/+22 |
|\ \ | |/ | | | | | Original patch by Alexandre Vassalotti. | ||||
| * | Issue #17711: Fixed unpickling by the persistent ID with protocol 0. | Serhiy Storchaka | 2016-07-17 | 1 | -12/+22 |
| | | | | | | | | Original patch by Alexandre Vassalotti. | ||||
* | | Issue #27512: Don't segfault when os.fspath() calls an object whose | Brett Cannon | 2016-07-15 | 1 | -0/+4 |
| | | | | | | | | | | | | __fspath__() raises an exception. Thanks to Xiang Zhang for the patch. | ||||
* | | 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. |