Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #22079: PyType_Ready() now checks that statically allocated type has | Serhiy Storchaka | 2015-01-28 | 1 | -0/+3 |
|\ | | | | | | | no dynamically allocated bases. | ||||
| * | Issue #22079: PyType_Ready() now checks that statically allocated type has | Serhiy Storchaka | 2015-01-28 | 1 | -0/+7 |
| | | | | | | | | no dynamically allocated bases. | ||||
| * | Issue #14099: Backout changeset e5bb3044402b (except adapted tests). | Serhiy Storchaka | 2015-01-26 | 1 | -5/+0 |
| | | |||||
* | | Issue #15859: PyUnicode_EncodeFSDefault(), PyUnicode_EncodeMBCS() and | Victor Stinner | 2015-01-26 | 2 | -0/+6 |
| | | | | | | | | | | | | PyUnicode_EncodeCodePage() now raise an exception if the object is not an Unicode object. For PyUnicode_EncodeFSDefault(), it was already the case on platforms other than Windows. Patch written by Campbell Barton. | ||||
* | | Issue #14099: Restored support of writing ZIP files to tellable but | Serhiy Storchaka | 2015-01-26 | 1 | -0/+3 |
| | | | | | | | | non-seekable streams. | ||||
* | | Issue #14099: Writing to ZipFile and reading multiple ZipExtFiles is | Serhiy Storchaka | 2015-01-26 | 1 | -0/+3 |
| | | | | | | | | threadsafe now. | ||||
* | | Issue #19361: JSON decoder now raises JSONDecodeError instead of ValueError. | Serhiy Storchaka | 2015-01-26 | 1 | -0/+2 |
| | | |||||
* | | Issue #18518: timeit now rejects statements which can't be compiled outside | Serhiy Storchaka | 2015-01-26 | 1 | -0/+3 |
|\ \ | |/ | | | | | a function or a loop (e.g. "return" or "break"). | ||||
| * | Issue #18518: timeit now rejects statements which can't be compiled outside | Serhiy Storchaka | 2015-01-26 | 1 | -0/+3 |
| | | | | | | | | a function or a loop (e.g. "return" or "break"). | ||||
* | | Issue #23094: Fixed readline with frames in Python implementation of pickle. | Serhiy Storchaka | 2015-01-26 | 1 | -0/+2 |
|\ \ | |/ | |||||
| * | Issue #23094: Fixed readline with frames in Python implementation of pickle. | Serhiy Storchaka | 2015-01-26 | 1 | -0/+2 |
| | | |||||
* | | Add credits for Martin Panter. | Serhiy Storchaka | 2015-01-26 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Add credits for Martin Panter. | Serhiy Storchaka | 2015-01-26 | 1 | -1/+1 |
| | | |||||
* | | Issue #23268: Fixed bugs in the comparison of ipaddress classes. | Serhiy Storchaka | 2015-01-26 | 1 | -0/+2 |
|\ \ | |/ | |||||
| * | Issue #23268: Fixed bugs in the comparison of ipaddress classes. | Serhiy Storchaka | 2015-01-26 | 1 | -0/+2 |
| | | |||||
* | | Issue #21408: The default __ne__() now returns NotImplemented if __eq__() | Serhiy Storchaka | 2015-01-26 | 1 | -0/+7 |
|\ \ | |/ | | | | | returned NotImplemented. Removed incorrect implementations of __ne__(). | ||||
| * | Issue #21408: The default __ne__() now returns NotImplemented if __eq__() | Serhiy Storchaka | 2015-01-26 | 1 | -0/+7 |
| | | | | | | | | returned NotImplemented. Removed incorrect implementations of __ne__(). | ||||
* | | merge 3.4 (#19996) | Benjamin Peterson | 2015-01-26 | 1 | -0/+3 |
|\ \ | |/ | |||||
| * | handle headers with no key (closes #19996) | Benjamin Peterson | 2015-01-26 | 1 | -0/+3 |
| | | | | | | | | Patch by Cory Benfield. | ||||
* | | Issue #23321: Fixed a crash in str.decode() when error handler returned | Serhiy Storchaka | 2015-01-25 | 1 | -0/+3 |
|\ \ | |/ | | | | | replacment string longer than mailformed input data. | ||||
| * | Issue #23321: Fixed a crash in str.decode() when error handler returned | Serhiy Storchaka | 2015-01-25 | 1 | -0/+3 |
| | | | | | | | | replacment string longer than mailformed input data. | ||||
* | | Issue #22286: The "backslashreplace" error handlers now works with | Serhiy Storchaka | 2015-01-25 | 1 | -0/+3 |
| | | | | | | | | decoding and translating. | ||||
* | | Closes #23253: Delay-load ShellExecute | Steve Dower | 2015-01-24 | 1 | -0/+3 |
| | | |||||
* | | Issue20284: Implement PEP461 | Ethan Furman | 2015-01-24 | 1 | -0/+3 |
| | | |||||
* | | add support for ALPN (closes #20188) | Benjamin Peterson | 2015-01-23 | 1 | -0/+3 |
| | | |||||
* | | http.client: disable Nagle's algorithm (closes #23302) | Benjamin Peterson | 2015-01-23 | 1 | -0/+4 |
| | | | | | | | | Patch by Demian Brecht. | ||||
* | | Issue #23133: Pickling of ipaddress objects now produces more compact and | Serhiy Storchaka | 2015-01-18 | 1 | -0/+3 |
| | | | | | | | | portable representation. | ||||
* | | Issue #23248: Update ssl error codes from latest OpenSSL git master. | Antoine Pitrou | 2015-01-18 | 1 | -0/+2 |
|\ \ | |/ | |||||
| * | Issue #23248: Update ssl error codes from latest OpenSSL git master. | Antoine Pitrou | 2015-01-18 | 1 | -0/+2 |
| | | |||||
* | | Issue #23266: Much faster implementation of ipaddress.collapse_addresses() ↵ | Antoine Pitrou | 2015-01-18 | 1 | -0/+3 |
| | | | | | | | | when there are many non-consecutive addresses. | ||||
* | | Issue #23098: 64-bit dev_t is now supported in the os module. | Serhiy Storchaka | 2015-01-18 | 1 | -0/+2 |
|\ \ | |/ | |||||
| * | Issue #23098: 64-bit dev_t is now supported in the os module. | Serhiy Storchaka | 2015-01-18 | 1 | -0/+2 |
| | | |||||
* | | Issue #23180: merge from 3.4 | Ned Deily | 2015-01-18 | 2 | -0/+4 |
|\ \ | |/ | |||||
| * | Issue #23180: Rename IDLE "Windows" menu item to "Window". | Ned Deily | 2015-01-18 | 2 | -0/+4 |
| | | | | | | | | Patch by Al Sweigart. | ||||
* | | Issue #23211: merge from 3.4 | Ned Deily | 2015-01-18 | 1 | -0/+2 |
|\ \ | |/ | |||||
| * | Issue #23211: Workaround test_logging failure on some OS X 10.6 systems: | Ned Deily | 2015-01-18 | 1 | -0/+2 |
| | | | | | | | | | | getaddrinfo("localhost") can fail depending on the name server configuration, use "127.0.0.0" instead. | ||||
* | | Issue #21817: When an exception is raised in a task submitted to a ↵ | Antoine Pitrou | 2015-01-17 | 1 | -0/+4 |
| | | | | | | | | | | | | ProcessPoolExecutor, the remote traceback is now displayed in the parent process. Patch by Claudiu Popa. | ||||
* | | Issue #15955: Add an option to limit output size when decompressing LZMA data. | Antoine Pitrou | 2015-01-17 | 1 | -0/+3 |
| | | | | | | | | Patch by Nikolaus Rath and Martin Panter. | ||||
* | | merge 3.4 (#22986) | Benjamin Peterson | 2015-01-17 | 1 | -0/+3 |
|\ \ | |/ | |||||
| * | capitialize "HttpOnly" and "Secure" as they appear in the standard and other ↵ | Benjamin Peterson | 2015-01-17 | 1 | -0/+3 |
| | | | | | | | | | | | | impls (closes #23250) Patch by Jon Dufresne. | ||||
* | | merge 3.4 (#23063) | Benjamin Peterson | 2015-01-15 | 1 | -0/+3 |
|\ \ | |/ | |||||
| * | fix parsing reST with code or code-block directives (closes #23063) | Benjamin Peterson | 2015-01-15 | 1 | -0/+3 |
| | | | | | | | | Patch by Marc Abramowitz. | ||||
* | | merge 3.4 (#23221) | Benjamin Peterson | 2015-01-13 | 1 | -0/+1 |
|\ \ | |/ | |||||
| * | fix instances of consecutive articles (closes #23221) | Benjamin Peterson | 2015-01-13 | 1 | -0/+1 |
| | | | | | | | | Patch by Karan Goel. | ||||
* | | Issue #23209, #23225: selectors.BaseSelector.get_key() now raises a | Victor Stinner | 2015-01-13 | 1 | -0/+5 |
|\ \ | |/ | | | | | | | | | RuntimeError if the selector is closed. And selectors.BaseSelector.close() now clears its internal reference to the selector mapping to break a reference cycle. Initial patch written by Martin Richard. | ||||
| * | Issue #23209, #23225: selectors.BaseSelector.close() now clears its internal | Victor Stinner | 2015-01-13 | 1 | -0/+4 |
| | | | | | | | | | | reference to the selector mapping to break a reference cycle. Initial patch written by Martin Richard. | ||||
* | | Issue #19777: Provide a home() classmethod on Path objects. | Antoine Pitrou | 2015-01-12 | 2 | -0/+5 |
| | | | | | | | | Contributed by Victor Salgado and Mayank Tripathi. | ||||
* | | Issue #23206: Make ``json.dumps(..., ensure_ascii=False)`` as fast as the ↵ | Antoine Pitrou | 2015-01-11 | 2 | -0/+4 |
| | | | | | | | | default case of ``ensure_ascii=True``. Patch by Naoki Inada. | ||||
* | | Issue #23185: add math.inf and math.nan constants. | Mark Dickinson | 2015-01-11 | 1 | -0/+2 |
| | | |||||
* | | Issue #22038: pyatomic.h now uses stdatomic.h or GCC built-in functions for | Victor Stinner | 2015-01-09 | 2 | -0/+6 |
| | | | | | | | | | | atomic memory access if available. Patch written by Vitor de Lima and Gustavo Temple. |