summaryrefslogtreecommitdiffstats
path: root/Doc/whatsnew
Commit message (Collapse)AuthorAgeFilesLines
...
* | Add porting note for issue #20951.Antoine Pitrou2014-04-291-0/+4
| |
* | #15916: if there are no docstrings, make empty suite, not an error.R David Murray2014-04-151-0/+4
| | | | | | | | | | | | | | | | | | | | This makes doctest work like unittest: if the test case is empty, that just means there are zero tests run, it's not an error. The existing behavior was broken, since it only gave an error if there were *no* docstrings, and zero tests run if there were docstrings but none of them contained tests. So this makes it self-consistent as well. Patch by Glenn Jones.
* | inspect: Make Signature and Parameter hashable. Issue #20334.Yury Selivanov2014-04-081-1/+2
| |
* | Issue #17621: Introduce importlib.util.LazyLoader.Brett Cannon2014-04-041-0/+4
| |
* | fix #21076: turn signal module constants into enumsGiampaolo Rodola'2014-04-041-0/+5
| |
* | inspect.Signature: Add 'Signature.from_callable' classmethod. Closes #17373Yury Selivanov2014-03-271-0/+4
| |
* | inspect.signature: Make Signature and Parameter picklable. Closes #20726Yury Selivanov2014-03-271-0/+3
| |
* | Merge #20145 backport: delete whatsnew entry.R David Murray2014-03-251-6/+0
|\ \ | |/
* | #20145: assert[Raises|Warns]Regex now raise TypeError on bad regex.R David Murray2014-03-231-0/+6
| | | | | | | | | | | | | | Previously a non-string, non-regex second argument could cause the test to always pass. Initial patch by Kamilla Holanda.
* | Issue #20627: xmlrpc.client.ServerProxy is now a context manager.Brett Cannon2014-03-211-1/+2
| | | | | | | | Patch by Claudiu Popa.
* | Issue #19165: The formatter module graduates to full deprecation.Brett Cannon2014-03-211-1/+2
| |
* | remove the ability of datetime.time to be considered false (closes #13936)Benjamin Peterson2014-03-201-1/+4
| |
* | Doc: add What's New in Python 3.5 to whatsnew indexVictor Stinner2014-03-181-0/+1
| |
* | Issue #19977: When the ``LC_TYPE`` locale is the POSIX locale (``C`` locale),Victor Stinner2014-03-181-1/+4
| | | | | | | | | | :py:data:`sys.stdin` and :py:data:`sys.stdout` are now using the ``surrogateescape`` error handler, instead of the ``strict`` error handler.
* | Add a stub "whatsnew in 3.5" document.Victor Stinner2014-03-171-0/+186
|/
* TypoJesus Cea2014-03-171-1/+1
|
* TypoJesus Cea2014-03-171-1/+1
|
* 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
|
* Fix grammar: merge with 3.3.Eric V. Smith2014-01-251-1/+1
|\
| * Fix grammar.Eric V. Smith2014-01-251-1/+1
| |
* | 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
| |