summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
Commit message (Collapse)AuthorAgeFilesLines
* #2211: properly document the Morsel behavior changes.R David Murray2015-03-291-5/+16
| | | | | | | Also deprecate the undocumented set argument instead of removing it already in 3.5. Initial patch by Demian Brecht.
* format .. note properlyBenjamin Peterson2015-03-271-3/+5
|
* Issue #23648: Document the PEP 475 in the "Porting to Python 3.5" section andVictor Stinner2015-03-261-0/+8
| | | | add a version changed note in modified functions.
* Issue #21717: The zipfile.ZipFile.open function now supports 'x' (exclusiveSerhiy Storchaka2015-03-251-0/+3
| | | | creation) mode.
* Issue #23671: string.Template now allows to specify the "self" parameter asSerhiy Storchaka2015-03-241-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 Storchaka2015-03-221-0/+6
| |
* | Issue #23681: The -b option now affects comparisons of bytes with int.Serhiy Storchaka2015-03-201-0/+2
| |
* | Issue #2211: Updated the implementation of the http.cookies.Morsel class.Serhiy Storchaka2015-03-181-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 Peksag2015-03-141-0/+8
| |
* | Issue #23491: Implement PEP 441: Improving Python Zip Application SupportBrett Cannon2015-03-131-4/+17
| | | | | | | | Thanks to Paul Moore for the PEP and implementation.
* | Issue #23566: enable(), register(), dump_traceback() and dump_traceback_later()Victor Stinner2015-03-121-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.5Victor Stinner2015-03-101-8/+18
| | | | | | | | Patch written by Ben Hoyt.
* | Issue #22524: New os.scandir() function, part of the PEP 471: "os.scandir()Victor Stinner2015-03-081-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 theSerhiy Storchaka2015-03-011-0/+5
| | | | | | | | __module__ attribute.
* | Issue #23465: Implement PEP 486 - Make the Python Launcher aware of virtual ↵Steve Dower2015-02-261-0/+12
| | | | | | | | environments (patch by Paul Moore)
* | Add a whatsnew entry for issue #22003.Berker Peksag2015-02-141-1/+2
| | | | | | | | Patch by David Wilson.
* | Issue #23437: Update NEWS and whatsnew/3.5Steve Dower2015-02-141-0/+7
| |
* | Issue #14910: Add allow_abbrev parameter to argparse.ArgumentParser.Berker Peksag2015-02-131-0/+8
| | | | | | | | Patch by Jonathan Paugh, Steven Bethard, paul j3 and Daniel Eriksson.
* | Issue #21717: tarfile.open() now supports 'x' (exclusive creation) mode.Berker Peksag2015-02-131-0/+6
| |
* | Issue #23344: marshal.dumps() is now 20-25% faster on average.Serhiy Storchaka2015-02-111-2/+3
| |
* | Issue #20416: marshal.dumps() with protocols 3 and 4 is now 40-50% faster onSerhiy Storchaka2015-02-111-0/+3
| | | | | | | | average.
* | Fix typos in Doc/whatsnew/3.5.rst.Berker Peksag2015-02-111-3/+3
| |
* | Issue #23285: PEP 475 -- Retry system calls failing with EINTR.Charles-François Natali2015-02-071-0/+10
| |
* | Issue #20289: cgi.FieldStorage() now supports the context management protocol.Berker Peksag2015-02-061-0/+6
| |
* | Fix typos in Doc/whatsnew/3.5.rst.Berker Peksag2015-02-061-6/+6
| |
* | Issue #15381: Optimized io.BytesIO to make less allocations and copyings.Serhiy Storchaka2015-02-031-0/+3
| |
* | Issue #22818: Splitting on a pattern that could match an empty string nowSerhiy Storchaka2015-02-031-0/+7
| | | | | | | | | | raises a warning. Patterns that can only match empty strings are now rejected.
* | Closes #22668: Merge from 3.4.Stefan Krah2015-01-291-0/+6
|\ \ | |/
| * Issue #23181: More "codepoint" -> "code point".Serhiy Storchaka2015-01-181-6/+6
| |
* | Add whatsnew entry for issue #5309.Berker Peksag2015-01-271-0/+7
| |
* | Issue #19361: JSON decoder now raises JSONDecodeError instead of ValueError.Serhiy Storchaka2015-01-261-0/+3
| |
* | Issue #22286: The "backslashreplace" error handlers now works withSerhiy Storchaka2015-01-251-1/+3
| | | | | | | | decoding and translating.
* | Closes #23181: codepoint -> code pointGeorg Brandl2015-01-141-6/+6
| |
* | Issue #23185: add math.inf and math.nan constants.Mark Dickinson2015-01-111-0/+6
| |
* | Issue #23014: Make importlib.abc.Loader.create_module() required whenBrett Cannon2015-01-091-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 Storchaka2014-12-231-0/+5
| | | | | | | | HTTPStatus.NOT_FOUND). Patch by Demian Brecht.
* | Removed duplicated words in in comments and docs.Serhiy Storchaka2014-12-011-1/+1
|\ \ | |/
| * Removed duplicated words in in comments and docs.Serhiy Storchaka2014-12-011-1/+1
| |
* | Issue #22389: Add contextlib.redirect_stderr().Berker Peksag2014-11-281-0/+9
| |
* | Issue #22834: Have import suppress FileNotFoundError when the currentBrett Cannon2014-11-211-0/+6
| | | | | | | | | | | | working directory no longer exists. Thanks to Martin Panter for the bug report.
* | Issue #22453: Removed non-documented macro PyObject_REPR().Serhiy Storchaka2014-11-181-0/+4
| |
* | Close #19494: add urrlib.request.HTTPBasicPriorAuthHandlerNick Coghlan2014-11-121-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 Peksag2014-11-101-0/+8
| |
* | merge 3.4 (#22417)Benjamin Peterson2014-11-031-0/+29
|\ \ | |/
| * PEP 476: enable HTTPS certificate verification by default (#22417)Benjamin Peterson2014-11-031-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 Storchaka2014-11-023-137/+138
|\ \ | |/
| * Issue #22388: Unified the style of "Contributed by" sentences in What's New.Serhiy Storchaka2014-11-022-107/+107
| |
| * Doc: fix default role usage (except in unittest mock docs)Georg Brandl2014-10-302-2/+2
| |
* | Issue #6623: Remove deprecated Netrc class in the ftplib module.Berker Peksag2014-11-011-0/+8
| | | | | | | | Patch by Matt Chaput.
* | Doc: fix default role usage (except in unittest mock docs)Georg Brandl2014-10-302-2/+2
| |