summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew/3.4.rst
Commit message (Collapse)AuthorAgeFilesLines
...
* TypoJesus Cea2014-03-171-1/+1
|
* Final documentation fixes for 3.4.0 final.v3.4.0Larry Hastings2014-03-161-4/+1
|
* Regenerate pydoc_topics, fix markup errors, in preparation for 3.4.0 final.Larry Hastings2014-03-161-1/+1
|
* Merge in all documentation changes since branching 3.4.0rc1.Larry Hastings2014-03-161-212/+954
|
* whatsnew: difflib.isbjunk &c were removed, not deprecated.R David Murray2014-03-141-4/+6
| | | | Also move NEWS item to correct position (it was in 3.3).
* whatsnew: cp273 codec (#10907797)R David Murray2014-03-081-0/+3
| | | | | Also updated the docs and added the aliases mentioned by the references.
* whatsnew: importlib deprecations.R David Murray2014-02-221-4/+24
| | | | | This addresses issue #20199, if I got it right. The deprecation and replacement lists are based on the importlib documentation.
* Mangle __parameters in __annotations__ dict properly. Issue #20625.Yury Selivanov2014-02-181-0/+4
|
* Python 3.4.0rc1 release: Updated pydoc topics, fixed suspicious markup errors.Larry Hastings2014-02-101-1/+1
|
* Issue #20500: clarify that invocation may be indirectNick Coghlan2014-02-091-2/+3
|
* Issue #20500: Note other public APIs with the new assertionNick Coghlan2014-02-091-5/+9
|
* Note the new debug assertion in PyObject_StrNick Coghlan2014-02-091-0/+7
|
* Tweaks to What's New and some referenced docsNick Coghlan2014-02-091-13/+37
|
* Close #20563: Declare ipaddress API stableNick Coghlan2014-02-081-0/+11
|
* whatsnew: read/write on closed SSL socket exception has changed.R David Murray2014-02-031-1/+5
|
* whatsnew: html.escape 10x faster, _gestalt module gone.R David Murray2014-02-031-1/+8
|
* whatsnew: hmac accepts more bytes types, importlib decode_source, stat in C.R David Murray2014-02-021-0/+18
|
* whatsnew: -m <namespace package>, plus 'using' doc updates.R David Murray2014-02-021-0/+7
|
* whatsnew: some more importlib replacements for imp functions.R David Murray2014-02-021-2/+10
| | | | get_magic->util.MAGIC_NUMBER, source_from_cache, and cache_from_source.
* whatsnew: filecmp.clear_cache, and reword description of cache in docs.R David Murray2014-02-021-0/+11
|
* whatsnew: fix importlib.reload entry.R David Murray2014-02-021-3/+3
| | | | | Turns out I committed a work-in-progress entry because of a time gap between when I wrote it and when I committed.
* whatsnew: move of reload, update new windows-only ssl functions entry.R David Murray2014-02-011-2/+8
|
* inspect.signature: Support duck-types of Python functions (Cython, for ↵Yury Selivanov2014-01-311-0/+4
| | | | instance) #17159
* Typo fixAndrew Kuchling2014-01-311-2/+1
|
* inspect.getfullargspec: Use inspect.signature API behind the scenes #17481Yury Selivanov2014-01-291-0/+7
|
* inspect.signature: Use '/' to separate positional-only parameters fromYury Selivanov2014-01-271-0/+3
| | | | the rest in Signature.__str__. #20356
* Close #20105: set __traceback__ when chaining exceptions in CNick Coghlan2014-01-261-0/+8
|
* whatsnew: smtpd *map* argument, new ssl functions/methods.R David Murray2014-01-211-4/+23
| | | | Fleshed out Christian's placeholder for the new ssl methods.
* Issue #18394: Document that cgi.FieldStorage now cleans up after itsBrett Cannon2014-01-171-0/+7
| | | | | | 'file' attribute properly in Python 3.4. Thanks to Marcel Hellkamp for pointing out the oversight.
* Issue #14455: Fix some issues with plistlibRonald Oussoren2014-01-151-0/+2
| | | | | | | | | | * Negative integer support in binary plists was broken * Better exception for invalid data * Fix the versionadded/versionchanged markup in the documentation * Add the interface cleanup to what's new for 3.4
* Correct a typo. Found by Lauri Hakko on docs@.Zachary Ware2014-01-131-1/+1
|
* whatsnew: InspectLoader.get_code now concrete, b32decode raises binascii.Error.R David Murray2014-01-081-0/+12
| | | | And a news item rephrase.
* whatsnew: FileIO.readall performance, os.cpu_count.R David Murray2014-01-081-0/+12
| | | | And more news item tweaks.
* whatsnew: expand 'dis' entry.R David Murray2014-01-071-8/+50
| | | | Also add one missing versionadded.
* whatsnew: ssl getpeercert/do_handshake raise OSError, weakref __callback__.R David Murray2014-01-061-3/+13
| | | | | | Also add a missing word to gc entry, and delete a now-obsolete doc note in the weakref __callback__ docs. (Opened an issue for rewriting the section that compares finalizers and __del__ method.)
* whatsnew: pydoc.Scanner removal, check_output input parm, operator.py.R David Murray2014-01-061-2/+28
| | | | Also fleshed out the entry on struct.iter_unpack.
* whatsnew: XMLPullParser, plus some doc updates.R David Murray2014-01-051-3/+4
| | | | | | | | | | I was confused by the text saying that read_events "iterated", since it actually returns an iterator (that's what a generator does) that the caller must then iterate. So I tidied up the language. I'm not sure what the sentence "Events provided in a previous call to read_events() will not be yielded again." is trying to convey, so I didn't try to fix that. Also fixed a couple more news items.
* whatsnew: removal of TYPE_INT64 from marshal.R David Murray2014-01-051-0/+3
| | | | | Also update news entry for SMTPException; when I changed it from IOError to OSError I forgot to update the news item.
* whatsnew: logging TimedRotatingFileHandler atTime parameter.R David Murray2014-01-041-0/+8
|
* whatsnew: from __future__ string exception, attribute UTF-32 decoder speedup.R David Murray2014-01-041-1/+8
| | | | And more news entry clarifications.
* whatsnew: ppring string wrapping, string pickling optimization.R David Murray2014-01-041-0/+7
| | | | Also clarify some NEWS entries.
* whatsnew: Mock mock_open readline(s); expand description of subtests feature.R David Murray2014-01-041-5/+23
|
* Reverted changeset b72c5573c5e7 (issue #15027).Serhiy Storchaka2014-01-041-3/+1
|
* Issue #15027: Rewrite the UTF-32 encoder. It is now 1.6x to 3.5x faster.Serhiy Storchaka2014-01-041-1/+3
|
* whatsnew: consistently use 3 blanks between major sections. 2 for minor.R David Murray2014-01-031-1/+9
|
* whatsnew: make bullet list presentation style consistent.R David Murray2014-01-031-16/+21
|
* whatsnew: unittest discovery sorting, urlllib Request getter/setter removals.R David Murray2014-01-031-0/+9
|
* whatsnew: porting note for HTTP[S]Connection strict parameter removal.R David Murray2014-01-031-2/+9
| | | | | | | It was discussed in issue #17460 whether or not to make the remaining arguments keyword only so that things would fail noisily if someone was still using positional parameters, but no decision was made and we are now well past the Beta API change deadline.
* whatsnew: deprecation of HTTPConnection's strict parameter.R David Murray2014-01-031-1/+4
|
* whatsnew: unittest import time SkipTest reported as skip not error.R David Murray2014-01-031-0/+4
|