Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | #2211: properly document the Morsel behavior changes. | R David Murray | 2015-03-29 | 1 | -5/+16 |
| | | | | | | | Also deprecate the undocumented set argument instead of removing it already in 3.5. Initial patch by Demian Brecht. | ||||
* | format .. note properly | Benjamin Peterson | 2015-03-27 | 1 | -3/+5 |
| | |||||
* | Issue #23648: Document the PEP 475 in the "Porting to Python 3.5" section and | Victor Stinner | 2015-03-26 | 1 | -0/+8 |
| | | | | add a version changed note in modified functions. | ||||
* | Issue #21717: The zipfile.ZipFile.open function now supports 'x' (exclusive | Serhiy Storchaka | 2015-03-25 | 1 | -0/+3 |
| | | | | creation) mode. | ||||
* | Issue #23671: string.Template now allows to specify the "self" parameter as | Serhiy Storchaka | 2015-03-24 | 1 | -0/+4 |
|\ | | | | | | | | | keyword argument. string.Formatter now allows to specify the "self" and the "format_string" parameters as keyword arguments. | ||||
* | | Issue #23252: Added support for writing ZIP files to unseekable streams. | Serhiy Storchaka | 2015-03-22 | 1 | -0/+6 |
| | | |||||
* | | Issue #23681: The -b option now affects comparisons of bytes with int. | Serhiy Storchaka | 2015-03-20 | 1 | -0/+2 |
| | | |||||
* | | Issue #2211: Updated the implementation of the http.cookies.Morsel class. | Serhiy Storchaka | 2015-03-18 | 1 | -0/+6 |
| | | | | | | | | | | | | | | | | | | Setting attributes key, value and coded_value directly now is deprecated. update() and setdefault() now transform and check keys. Comparing for equality now takes into account attributes key, value and coded_value. copy() now returns a Morsel, not a dict. repr() now contains all attributes. Optimized checking keys and quoting values. Added new tests. Original patch by Demian Brecht. | ||||
* | | Issue #2052: Add charset parameter to HtmlDiff.make_file(). | Berker Peksag | 2015-03-14 | 1 | -0/+8 |
| | | |||||
* | | Issue #23491: Implement PEP 441: Improving Python Zip Application Support | Brett Cannon | 2015-03-13 | 1 | -4/+17 |
| | | | | | | | | Thanks to Paul Moore for the PEP and implementation. | ||||
* | | Issue #23566: enable(), register(), dump_traceback() and dump_traceback_later() | Victor Stinner | 2015-03-12 | 1 | -0/+8 |
| | | | | | | | | functions of faulthandler now accept file descriptors. Patch by Wei Wu. | ||||
* | | Issue #22524: Rephrase scandir addition in What's New in Python 3.5 | Victor Stinner | 2015-03-10 | 1 | -8/+18 |
| | | | | | | | | Patch written by Ben Hoyt. | ||||
* | | Issue #22524: New os.scandir() function, part of the PEP 471: "os.scandir() | Victor Stinner | 2015-03-08 | 1 | -0/+19 |
| | | | | | | | | | | function -- a better and faster directory iterator". Patch written by Ben Hoyt. | ||||
* | | Issue #20204: Deprecation warning is now raised for builtin type without the | Serhiy Storchaka | 2015-03-01 | 1 | -0/+5 |
| | | | | | | | | __module__ attribute. | ||||
* | | Issue #23465: Implement PEP 486 - Make the Python Launcher aware of virtual ↵ | Steve Dower | 2015-02-26 | 1 | -0/+12 |
| | | | | | | | | environments (patch by Paul Moore) | ||||
* | | Add a whatsnew entry for issue #22003. | Berker Peksag | 2015-02-14 | 1 | -1/+2 |
| | | | | | | | | Patch by David Wilson. | ||||
* | | Issue #23437: Update NEWS and whatsnew/3.5 | Steve Dower | 2015-02-14 | 1 | -0/+7 |
| | | |||||
* | | Issue #14910: Add allow_abbrev parameter to argparse.ArgumentParser. | Berker Peksag | 2015-02-13 | 1 | -0/+8 |
| | | | | | | | | Patch by Jonathan Paugh, Steven Bethard, paul j3 and Daniel Eriksson. | ||||
* | | Issue #21717: tarfile.open() now supports 'x' (exclusive creation) mode. | Berker Peksag | 2015-02-13 | 1 | -0/+6 |
| | | |||||
* | | Issue #23344: marshal.dumps() is now 20-25% faster on average. | Serhiy Storchaka | 2015-02-11 | 1 | -2/+3 |
| | | |||||
* | | Issue #20416: marshal.dumps() with protocols 3 and 4 is now 40-50% faster on | Serhiy Storchaka | 2015-02-11 | 1 | -0/+3 |
| | | | | | | | | average. | ||||
* | | Fix typos in Doc/whatsnew/3.5.rst. | Berker Peksag | 2015-02-11 | 1 | -3/+3 |
| | | |||||
* | | Issue #23285: PEP 475 -- Retry system calls failing with EINTR. | Charles-François Natali | 2015-02-07 | 1 | -0/+10 |
| | | |||||
* | | Issue #20289: cgi.FieldStorage() now supports the context management protocol. | Berker Peksag | 2015-02-06 | 1 | -0/+6 |
| | | |||||
* | | Fix typos in Doc/whatsnew/3.5.rst. | Berker Peksag | 2015-02-06 | 1 | -6/+6 |
| | | |||||
* | | Issue #15381: Optimized io.BytesIO to make less allocations and copyings. | Serhiy Storchaka | 2015-02-03 | 1 | -0/+3 |
| | | |||||
* | | Issue #22818: Splitting on a pattern that could match an empty string now | Serhiy Storchaka | 2015-02-03 | 1 | -0/+7 |
| | | | | | | | | | | raises a warning. Patterns that can only match empty strings are now rejected. | ||||
* | | Closes #22668: Merge from 3.4. | Stefan Krah | 2015-01-29 | 1 | -0/+6 |
|\ \ | |/ | |||||
| * | Issue #23181: More "codepoint" -> "code point". | Serhiy Storchaka | 2015-01-18 | 1 | -6/+6 |
| | | |||||
* | | Add whatsnew entry for issue #5309. | Berker Peksag | 2015-01-27 | 1 | -0/+7 |
| | | |||||
* | | Issue #19361: JSON decoder now raises JSONDecodeError instead of ValueError. | Serhiy Storchaka | 2015-01-26 | 1 | -0/+3 |
| | | |||||
* | | Issue #22286: The "backslashreplace" error handlers now works with | Serhiy Storchaka | 2015-01-25 | 1 | -1/+3 |
| | | | | | | | | decoding and translating. | ||||
* | | Closes #23181: codepoint -> code point | Georg Brandl | 2015-01-14 | 1 | -6/+6 |
| | | |||||
* | | Issue #23185: add math.inf and math.nan constants. | Mark Dickinson | 2015-01-11 | 1 | -0/+6 |
| | | |||||
* | | Issue #23014: Make importlib.abc.Loader.create_module() required when | Brett Cannon | 2015-01-09 | 1 | -0/+8 |
| | | | | | | | | | | | | | | | | | | importlib.abc.Loader.exec_module() is also defined. Before this change, create_module() was optional **and** could return None to trigger default semantics. This change now reduces the options for choosing default semantics to one and in the most backporting-friendly way (define create_module() to return None). | ||||
* | | Issue #21793: Added http.HTTPStatus enums (i.e. HTTPStatus.OK, | Serhiy Storchaka | 2014-12-23 | 1 | -0/+5 |
| | | | | | | | | HTTPStatus.NOT_FOUND). Patch by Demian Brecht. | ||||
* | | Removed duplicated words in in comments and docs. | Serhiy Storchaka | 2014-12-01 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Removed duplicated words in in comments and docs. | Serhiy Storchaka | 2014-12-01 | 1 | -1/+1 |
| | | |||||
* | | Issue #22389: Add contextlib.redirect_stderr(). | Berker Peksag | 2014-11-28 | 1 | -0/+9 |
| | | |||||
* | | Issue #22834: Have import suppress FileNotFoundError when the current | Brett Cannon | 2014-11-21 | 1 | -0/+6 |
| | | | | | | | | | | | | working directory no longer exists. Thanks to Martin Panter for the bug report. | ||||
* | | Issue #22453: Removed non-documented macro PyObject_REPR(). | Serhiy Storchaka | 2014-11-18 | 1 | -0/+4 |
| | | |||||
* | | Close #19494: add urrlib.request.HTTPBasicPriorAuthHandler | Nick Coghlan | 2014-11-12 | 1 | -0/+9 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This auth handler adds the Authorization header to the first HTTP request rather than waiting for a HTTP 401 Unauthorized response from the server as the default HTTPBasicAuthHandler does. This allows working with websites like https://api.github.com which do not follow the strict interpretation of RFC, but more the dicta in the end of section 2 of RFC 2617: > A client MAY preemptively send the corresponding Authorization > header with requests for resources in that space without receipt > of another challenge from the server. Similarly, when a client > sends a request to a proxy, it may reuse a userid and password in > the Proxy-Authorization header field without receiving another > challenge from the proxy server. See section 4 for security > considerations associated with Basic authentication. Patch by Matej Cepl. | ||||
* | | Issue #21650: Add an `--sort-keys` option to json.tool CLI. | Berker Peksag | 2014-11-10 | 1 | -0/+8 |
| | | |||||
* | | merge 3.4 (#22417) | Benjamin Peterson | 2014-11-03 | 1 | -0/+29 |
|\ \ | |/ | |||||
| * | PEP 476: enable HTTPS certificate verification by default (#22417) | Benjamin Peterson | 2014-11-03 | 1 | -0/+29 |
| | | | | | | | | Patch by Alex Gaynor with some modifications by me. | ||||
* | | Issue #22388: Unified the style of "Contributed by" sentences in What's New. | Serhiy Storchaka | 2014-11-02 | 3 | -137/+138 |
|\ \ | |/ | |||||
| * | Issue #22388: Unified the style of "Contributed by" sentences in What's New. | Serhiy Storchaka | 2014-11-02 | 2 | -107/+107 |
| | | |||||
| * | Doc: fix default role usage (except in unittest mock docs) | Georg Brandl | 2014-10-30 | 2 | -2/+2 |
| | | |||||
* | | Issue #6623: Remove deprecated Netrc class in the ftplib module. | Berker Peksag | 2014-11-01 | 1 | -0/+8 |
| | | | | | | | | Patch by Matt Chaput. | ||||
* | | Doc: fix default role usage (except in unittest mock docs) | Georg Brandl | 2014-10-30 | 2 | -2/+2 |
| | |