Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | whatsnew: filecmp.clear_cache, and reword description of cache in docs. | R David Murray | 2014-02-02 | 1 | -0/+11 |
| | |||||
* | whatsnew: fix importlib.reload entry. | R David Murray | 2014-02-02 | 1 | -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 Murray | 2014-02-01 | 1 | -2/+8 |
| | |||||
* | inspect.signature: Support duck-types of Python functions (Cython, for ↵ | Yury Selivanov | 2014-01-31 | 1 | -0/+4 |
| | | | | instance) #17159 | ||||
* | Typo fix | Andrew Kuchling | 2014-01-31 | 1 | -2/+1 |
| | |||||
* | inspect.getfullargspec: Use inspect.signature API behind the scenes #17481 | Yury Selivanov | 2014-01-29 | 1 | -0/+7 |
| | |||||
* | inspect.signature: Use '/' to separate positional-only parameters from | Yury Selivanov | 2014-01-27 | 1 | -0/+3 |
| | | | | the rest in Signature.__str__. #20356 | ||||
* | Close #20105: set __traceback__ when chaining exceptions in C | Nick Coghlan | 2014-01-26 | 1 | -0/+8 |
| | |||||
* | whatsnew: smtpd *map* argument, new ssl functions/methods. | R David Murray | 2014-01-21 | 1 | -4/+23 |
| | | | | Fleshed out Christian's placeholder for the new ssl methods. | ||||
* | Issue #18394: Document that cgi.FieldStorage now cleans up after its | Brett Cannon | 2014-01-17 | 1 | -0/+7 |
| | | | | | | 'file' attribute properly in Python 3.4. Thanks to Marcel Hellkamp for pointing out the oversight. | ||||
* | Issue #14455: Fix some issues with plistlib | Ronald Oussoren | 2014-01-15 | 1 | -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 Ware | 2014-01-13 | 1 | -1/+1 |
| | |||||
* | whatsnew: InspectLoader.get_code now concrete, b32decode raises binascii.Error. | R David Murray | 2014-01-08 | 1 | -0/+12 |
| | | | | And a news item rephrase. | ||||
* | whatsnew: FileIO.readall performance, os.cpu_count. | R David Murray | 2014-01-08 | 1 | -0/+12 |
| | | | | And more news item tweaks. | ||||
* | whatsnew: expand 'dis' entry. | R David Murray | 2014-01-07 | 1 | -8/+50 |
| | | | | Also add one missing versionadded. | ||||
* | whatsnew: ssl getpeercert/do_handshake raise OSError, weakref __callback__. | R David Murray | 2014-01-06 | 1 | -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 Murray | 2014-01-06 | 1 | -2/+28 |
| | | | | Also fleshed out the entry on struct.iter_unpack. | ||||
* | whatsnew: XMLPullParser, plus some doc updates. | R David Murray | 2014-01-05 | 1 | -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 Murray | 2014-01-05 | 1 | -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 Murray | 2014-01-04 | 1 | -0/+8 |
| | |||||
* | whatsnew: from __future__ string exception, attribute UTF-32 decoder speedup. | R David Murray | 2014-01-04 | 1 | -1/+8 |
| | | | | And more news entry clarifications. | ||||
* | whatsnew: ppring string wrapping, string pickling optimization. | R David Murray | 2014-01-04 | 1 | -0/+7 |
| | | | | Also clarify some NEWS entries. | ||||
* | whatsnew: Mock mock_open readline(s); expand description of subtests feature. | R David Murray | 2014-01-04 | 1 | -5/+23 |
| | |||||
* | Reverted changeset b72c5573c5e7 (issue #15027). | Serhiy Storchaka | 2014-01-04 | 1 | -3/+1 |
| | |||||
* | Issue #15027: Rewrite the UTF-32 encoder. It is now 1.6x to 3.5x faster. | Serhiy Storchaka | 2014-01-04 | 1 | -1/+3 |
| | |||||
* | whatsnew: consistently use 3 blanks between major sections. 2 for minor. | R David Murray | 2014-01-03 | 1 | -1/+9 |
| | |||||
* | whatsnew: make bullet list presentation style consistent. | R David Murray | 2014-01-03 | 1 | -16/+21 |
| | |||||
* | whatsnew: unittest discovery sorting, urlllib Request getter/setter removals. | R David Murray | 2014-01-03 | 1 | -0/+9 |
| | |||||
* | whatsnew: porting note for HTTP[S]Connection strict parameter removal. | R David Murray | 2014-01-03 | 1 | -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 Murray | 2014-01-03 | 1 | -1/+4 |
| | |||||
* | whatsnew: unittest import time SkipTest reported as skip not error. | R David Murray | 2014-01-03 | 1 | -0/+4 |
| | |||||
* | whatsnew: http.server send_error explain parameter. | R David Murray | 2014-01-03 | 1 | -0/+12 |
| | | | | Also rewrote the send_error description for clarity and correct English. | ||||
* | * Issue #16113: Remove sha3 module again. | Martin v. Löwis | 2014-01-03 | 1 | -8/+0 |
| | | | | Patch by Christian Heimes, with modifications. | ||||
* | whatsnew: sqlite3 uri parm, unittest.main defaultTest, ftplib.Netrc deprecation | R David Murray | 2014-01-02 | 1 | -0/+17 |
| | |||||
* | whatsnew: mock called_with improvements, socket CAN_BCM support. | R David Murray | 2013-12-31 | 1 | -6/+17 |
| | | | | | Also reworded the other entries in the socket section of whatsnew, as well as a couple of unrelated news entries. | ||||
* | whatsnew: random.getrandbits performance. | R David Murray | 2013-12-31 | 1 | -0/+5 |
| | | | | Also fix a NEWS file issue number error, and some spacing fixes in whatsnew. | ||||
* | whatsnew: afic.open supports 'with'. | R David Murray | 2013-12-31 | 1 | -0/+5 |
| | |||||
* | whatsnew: argparse FileType accepts errors and encodings args. | R David Murray | 2013-12-31 | 1 | -0/+8 |
| | |||||
* | whatsnew: epoll supports with. | R David Murray | 2013-12-31 | 1 | -0/+9 |
| | | | | Also reworded the description of the feature in the docs. | ||||
* | Fixed typo (thx Arfrever) | Christian Heimes | 2013-12-30 | 1 | -1/+1 |
| | |||||
* | whatsnew: abc.ABC. Also add issue number to news entry and reword. | R David Murray | 2013-12-29 | 1 | -0/+6 |
| | |||||
* | whatsnew: rewrite urllib, doctest, and poplib sections. | R David Murray | 2013-12-27 | 1 | -17/+16 |
| | | | | | Also collapse redundant versionadded/versionchanged markup in poplib.stls entry. | ||||
* | whatsnew: importlib cleanup and source_to_code add; python partial impl. | R David Murray | 2013-12-27 | 1 | -2/+21 |
| | |||||
* | whatsnew for gc.get_stats, plus doc tweaks. | R David Murray | 2013-12-26 | 1 | -0/+8 |
| | | | | | | | | | | Clarified the "At the moment" wording, and added the get_stats entry in the module summary that Serhiy noted was missing at the end of issue 16351. Given that pydoc lists all the function docstrings, I'm not sure that module summary section is actually needed; but, it is probably better to address that when the module is converted to use Argument Clinic. In the meantime we should keep the list complete. | ||||
* | shelf in with stmt, fish/csh in venv, ElementTree short_empty_elements keyword. | R David Murray | 2013-12-26 | 1 | -0/+25 |
| | | | | | | Also added versionadded for for fish/csh, fixed indentation of versionadded for ElementTree.write, and make the behavior of shelf as a context manager explicit in the docs. | ||||
* | pty.spawn returns os.waitpid; optimization of BZ2File and LZMAFile. | R David Murray | 2013-12-25 | 1 | -0/+13 |
| | |||||
* | #16832: s/integer/object/ in docs/docstring, and add whatsnew entry. | R David Murray | 2013-12-24 | 1 | -0/+6 |
| | |||||
* | idle -n deprecation, fix case of pickle section. | R David Murray | 2013-12-24 | 1 | -1/+4 |
| | |||||
* | Neaten up structure of major sections. | R David Murray | 2013-12-24 | 1 | -13/+20 |
| | | | | Also move tick_counter from deprecated section to removed section. | ||||
* | Move no-longer-supported operating systems into 'removed' section. | R David Murray | 2013-12-24 | 1 | -13/+7 |
| |