summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
* Issue #22079: PyType_Ready() now checks that statically allocated type hasSerhiy Storchaka2015-01-281-0/+3
|\ | | | | | | no dynamically allocated bases.
| * Issue #22079: PyType_Ready() now checks that statically allocated type hasSerhiy Storchaka2015-01-281-0/+7
| | | | | | | | no dynamically allocated bases.
| * Issue #14099: Backout changeset e5bb3044402b (except adapted tests).Serhiy Storchaka2015-01-261-5/+0
| |
* | Issue #15859: PyUnicode_EncodeFSDefault(), PyUnicode_EncodeMBCS() andVictor Stinner2015-01-262-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 butSerhiy Storchaka2015-01-261-0/+3
| | | | | | | | non-seekable streams.
* | Issue #14099: Writing to ZipFile and reading multiple ZipExtFiles isSerhiy Storchaka2015-01-261-0/+3
| | | | | | | | threadsafe now.
* | Issue #19361: JSON decoder now raises JSONDecodeError instead of ValueError.Serhiy Storchaka2015-01-261-0/+2
| |
* | Issue #18518: timeit now rejects statements which can't be compiled outsideSerhiy Storchaka2015-01-261-0/+3
|\ \ | |/ | | | | a function or a loop (e.g. "return" or "break").
| * Issue #18518: timeit now rejects statements which can't be compiled outsideSerhiy Storchaka2015-01-261-0/+3
| | | | | | | | a function or a loop (e.g. "return" or "break").
* | Issue #23094: Fixed readline with frames in Python implementation of pickle.Serhiy Storchaka2015-01-261-0/+2
|\ \ | |/
| * Issue #23094: Fixed readline with frames in Python implementation of pickle.Serhiy Storchaka2015-01-261-0/+2
| |
* | Add credits for Martin Panter.Serhiy Storchaka2015-01-261-1/+1
|\ \ | |/
| * Add credits for Martin Panter.Serhiy Storchaka2015-01-261-1/+1
| |
* | Issue #23268: Fixed bugs in the comparison of ipaddress classes.Serhiy Storchaka2015-01-261-0/+2
|\ \ | |/
| * Issue #23268: Fixed bugs in the comparison of ipaddress classes.Serhiy Storchaka2015-01-261-0/+2
| |
* | Issue #21408: The default __ne__() now returns NotImplemented if __eq__()Serhiy Storchaka2015-01-261-0/+7
|\ \ | |/ | | | | returned NotImplemented. Removed incorrect implementations of __ne__().
| * Issue #21408: The default __ne__() now returns NotImplemented if __eq__()Serhiy Storchaka2015-01-261-0/+7
| | | | | | | | returned NotImplemented. Removed incorrect implementations of __ne__().
* | merge 3.4 (#19996)Benjamin Peterson2015-01-261-0/+3
|\ \ | |/
| * handle headers with no key (closes #19996)Benjamin Peterson2015-01-261-0/+3
| | | | | | | | Patch by Cory Benfield.
* | Issue #23321: Fixed a crash in str.decode() when error handler returnedSerhiy Storchaka2015-01-251-0/+3
|\ \ | |/ | | | | replacment string longer than mailformed input data.
| * Issue #23321: Fixed a crash in str.decode() when error handler returnedSerhiy Storchaka2015-01-251-0/+3
| | | | | | | | replacment string longer than mailformed input data.
* | Issue #22286: The "backslashreplace" error handlers now works withSerhiy Storchaka2015-01-251-0/+3
| | | | | | | | decoding and translating.
* | Closes #23253: Delay-load ShellExecuteSteve Dower2015-01-241-0/+3
| |
* | Issue20284: Implement PEP461Ethan Furman2015-01-241-0/+3
| |
* | add support for ALPN (closes #20188)Benjamin Peterson2015-01-231-0/+3
| |
* | http.client: disable Nagle's algorithm (closes #23302)Benjamin Peterson2015-01-231-0/+4
| | | | | | | | Patch by Demian Brecht.
* | Issue #23133: Pickling of ipaddress objects now produces more compact andSerhiy Storchaka2015-01-181-0/+3
| | | | | | | | portable representation.
* | Issue #23248: Update ssl error codes from latest OpenSSL git master.Antoine Pitrou2015-01-181-0/+2
|\ \ | |/
| * Issue #23248: Update ssl error codes from latest OpenSSL git master.Antoine Pitrou2015-01-181-0/+2
| |
* | Issue #23266: Much faster implementation of ipaddress.collapse_addresses() ↵Antoine Pitrou2015-01-181-0/+3
| | | | | | | | when there are many non-consecutive addresses.
* | Issue #23098: 64-bit dev_t is now supported in the os module.Serhiy Storchaka2015-01-181-0/+2
|\ \ | |/
| * Issue #23098: 64-bit dev_t is now supported in the os module.Serhiy Storchaka2015-01-181-0/+2
| |
* | Issue #23180: merge from 3.4Ned Deily2015-01-182-0/+4
|\ \ | |/
| * Issue #23180: Rename IDLE "Windows" menu item to "Window".Ned Deily2015-01-182-0/+4
| | | | | | | | Patch by Al Sweigart.
* | Issue #23211: merge from 3.4Ned Deily2015-01-181-0/+2
|\ \ | |/
| * Issue #23211: Workaround test_logging failure on some OS X 10.6 systems:Ned Deily2015-01-181-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 Pitrou2015-01-171-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 Pitrou2015-01-171-0/+3
| | | | | | | | Patch by Nikolaus Rath and Martin Panter.
* | merge 3.4 (#22986)Benjamin Peterson2015-01-171-0/+3
|\ \ | |/
| * capitialize "HttpOnly" and "Secure" as they appear in the standard and other ↵Benjamin Peterson2015-01-171-0/+3
| | | | | | | | | | | | impls (closes #23250) Patch by Jon Dufresne.
* | merge 3.4 (#23063)Benjamin Peterson2015-01-151-0/+3
|\ \ | |/
| * fix parsing reST with code or code-block directives (closes #23063)Benjamin Peterson2015-01-151-0/+3
| | | | | | | | Patch by Marc Abramowitz.
* | merge 3.4 (#23221)Benjamin Peterson2015-01-131-0/+1
|\ \ | |/
| * fix instances of consecutive articles (closes #23221)Benjamin Peterson2015-01-131-0/+1
| | | | | | | | Patch by Karan Goel.
* | Issue #23209, #23225: selectors.BaseSelector.get_key() now raises aVictor Stinner2015-01-131-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 internalVictor Stinner2015-01-131-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 Pitrou2015-01-122-0/+5
| | | | | | | | Contributed by Victor Salgado and Mayank Tripathi.
* | Issue #23206: Make ``json.dumps(..., ensure_ascii=False)`` as fast as the ↵Antoine Pitrou2015-01-112-0/+4
| | | | | | | | default case of ``ensure_ascii=True``. Patch by Naoki Inada.
* | Issue #23185: add math.inf and math.nan constants.Mark Dickinson2015-01-111-0/+2
| |
* | Issue #22038: pyatomic.h now uses stdatomic.h or GCC built-in functions forVictor Stinner2015-01-092-0/+6
| | | | | | | | | | atomic memory access if available. Patch written by Vitor de Lima and Gustavo Temple.