Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #18983: Allow selection of output units in timeit. | Robert Collins | 2015-03-17 | 1 | -1/+7 |
| | | | | | | | | This allows manual selection of a specific unit such as usecs rather than the use of a heuristic. This is intended to aid machine processing of timeit output. Patch by Serhiy Storchaka. | ||||
* | Revert changeset d927047b1d8eb87738676980a24930d053ba2150 | Victor Stinner | 2015-03-17 | 1 | -4/+0 |
| | | | | Sorry, it was a mistake, the patch is still under review: issue #23646. | ||||
* | Issue #23682: Delete Python 2.2 mention from distutils documentation. | Berker Peksag | 2015-03-17 | 1 | -14/+0 |
|\ | | | | | | | Patch by Thomas Kluyver. | ||||
| * | Issue #23682: Delete Python 2.2 mention from distutils documentation. | Berker Peksag | 2015-03-17 | 1 | -14/+0 |
| | | | | | | | | Patch by Thomas Kluyver. | ||||
* | | merge 3.4 (#23679) | Benjamin Peterson | 2015-03-16 | 1 | -2/+6 |
|\ \ | |/ | |||||
| * | versionchanged for rc4 removal (closes #23679) | Benjamin Peterson | 2015-03-16 | 1 | -2/+6 |
| | | |||||
* | | Issue #23549: Clarify confusion in heapq doc - accessing the mininmal element | Eli Bendersky | 2015-03-15 | 1 | -2/+4 |
|\ \ | |/ | | | | | | | | | | | | | | | Merge 3.4 The current documentation only mentions heap[0] as the smallest element in the beginning, and not in any of the methods' docs. There's no method to access the minimal element without popping it, and the documentation of nsmallest is confusing because it may suggest that min() is the way to go for n==1. | ||||
| * | Issue #23549: Clarify confusion in heapq doc - accessing the mininmal element | Eli Bendersky | 2015-03-15 | 1 | -2/+4 |
| | | | | | | | | | | | | | | The current documentation only mentions heap[0] as the smallest element in the beginning, and not in any of the methods' docs. There's no method to access the minimal element without popping it, and the documentation of nsmallest is confusing because it may suggest that min() is the way to go for n==1. | ||||
* | | Issue #2052: Add charset parameter to HtmlDiff.make_file(). | Berker Peksag | 2015-03-14 | 2 | -1/+14 |
| | | |||||
* | | Fix minor docs markup errors. | Serhiy Storchaka | 2015-03-14 | 2 | -2/+2 |
|\ \ | |/ | |||||
| * | Fix minor docs markup errors. | Serhiy Storchaka | 2015-03-14 | 2 | -2/+2 |
| | | |||||
* | | merge 3.4 | Benjamin Peterson | 2015-03-13 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | __getslice__ certainly won't appear in the output | Benjamin Peterson | 2015-03-13 | 1 | -1/+1 |
| | | |||||
* | | Merge 3.4 | Brett Cannon | 2015-03-13 | 1 | -13/+13 |
|\ \ | |/ | |||||
| * | Make the case to only support Python 2.7 when supporting 2/3 simultaneously | Brett Cannon | 2015-03-13 | 1 | -13/+13 |
| | | |||||
* | | Strip trailing whitespace | Brett Cannon | 2015-03-13 | 1 | -7/+8 |
| | | |||||
* | | Issue #23491: Implement PEP 441: Improving Python Zip Application Support | Brett Cannon | 2015-03-13 | 3 | -4/+275 |
| | | | | | | | | Thanks to Paul Moore for the PEP and implementation. | ||||
* | | test | Victor Stinner | 2015-03-12 | 1 | -0/+4 |
| | | |||||
* | | merge 3.4 | Benjamin Peterson | 2015-03-13 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | use the meth role for ZipFile.open | Benjamin Peterson | 2015-03-13 | 1 | -1/+1 |
| | | |||||
* | | Issue #23081: Document that PySequence_List also accepts iterables. | Berker Peksag | 2015-03-13 | 1 | -2/+3 |
|\ \ | |/ | | | | | Patch by Lars Buitinck. | ||||
| * | Issue #23081: Document that PySequence_List also accepts iterables. | Berker Peksag | 2015-03-13 | 1 | -2/+3 |
| | | | | | | | | Patch by Lars Buitinck. | ||||
* | | Issue #22154: Add an example to show context management protocol support of ↵ | Berker Peksag | 2015-03-13 | 1 | -0/+7 |
|\ \ | |/ | | | | | | | | | ZipFile.open(). Patch by Mike Short. | ||||
| * | Issue #22154: Add an example to show context management protocol support of ↵ | Berker Peksag | 2015-03-13 | 1 | -0/+7 |
| | | | | | | | | | | | | ZipFile.open(). Patch by Mike Short. | ||||
* | | Issue #23641: Cleaned out legacy dunder names from tests and docs. | Serhiy Storchaka | 2015-03-12 | 2 | -7/+7 |
|\ \ | |/ | | | | | | | Fixed 2 to 3 porting bug in pynche.ColorDB. Added few tests for __truediv__, __floordiv__ and __matmul__. | ||||
| * | Issue #23641: Cleaned out legacy dunder names from tests and docs. | Serhiy Storchaka | 2015-03-12 | 2 | -7/+7 |
| | | | | | | | | Fixed 2 to 3 porting bug in pynche.ColorDB. | ||||
* | | Add versionadded directives for the matmul operator. | Berker Peksag | 2015-03-12 | 1 | -0/+4 |
| | | |||||
* | | Issue #23651: Fix typo in allow_abbrev docs. | Berker Peksag | 2015-03-12 | 1 | -1/+1 |
| | | | | | | | | Noticed by Nathan West. | ||||
* | | Issue #23566: enable(), register(), dump_traceback() and dump_traceback_later() | Victor Stinner | 2015-03-12 | 2 | -0/+32 |
| | | | | | | | | functions of faulthandler now accept file descriptors. Patch by Wei Wu. | ||||
* | | Close issue23467: add %r compatibility to bytes and bytearray | Ethan Furman | 2015-03-11 | 1 | -1/+7 |
| | | |||||
* | | Merge 3.4 (asyncio doc) | Victor Stinner | 2015-03-10 | 1 | -4/+4 |
|\ \ | |/ | |||||
| * | asyncio doc: changes on the Queue API missed Python 3.4.3 release | Victor Stinner | 2015-03-10 | 1 | -4/+4 |
| | | |||||
* | | Issue #23432: Remove duplicate content from SystemExit docs. | Berker Peksag | 2015-03-10 | 1 | -13/+13 |
|\ \ | |/ | | | | | Also, document SystemExit.code attribute explicitly. | ||||
| * | Issue #23432: Remove duplicate content from SystemExit docs. | Berker Peksag | 2015-03-10 | 1 | -13/+13 |
| | | | | | | | | Also, document SystemExit.code attribute explicitly. | ||||
* | | Merge 3.4 (os doc) | Victor Stinner | 2015-03-10 | 1 | -2/+3 |
|\ \ | |/ | |||||
| * | Issue #23605: os.walk() doc now mentions shutil.rmtree() in the last example | Victor Stinner | 2015-03-10 | 1 | -2/+3 |
| | | |||||
* | | 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 #23605: os.walk() now calls os.scandir() instead of os.listdir(). | Victor Stinner | 2015-03-10 | 1 | -0/+5 |
| | | | | | | | | | | The usage of os.scandir() reduces the number of calls to os.stat(). Initial patch written by Ben Hoyt. | ||||
* | | Issue #23617: Correct plurals typo noted by Kentrell Johnson. | Ned Deily | 2015-03-09 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | Issue #23617: Correct plurals typo noted by Kentrell Johnson. | Ned Deily | 2015-03-09 | 1 | -1/+1 |
| | | |||||
* | | merge 3.4 (#23608) | Benjamin Peterson | 2015-03-08 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | indicate correct version (closes #23608) | Benjamin Peterson | 2015-03-08 | 1 | -1/+1 |
| | | |||||
* | | Issue #22524: New os.scandir() function, part of the PEP 471: "os.scandir() | Victor Stinner | 2015-03-08 | 2 | -0/+196 |
| | | | | | | | | | | function -- a better and faster directory iterator". Patch written by Ben Hoyt. | ||||
* | | merge 3.4 | Benjamin Peterson | 2015-03-07 | 2 | -4/+4 |
|\ \ | |/ | |||||
| * | replace Amazon links in the documentation (closes #23579) | Benjamin Peterson | 2015-03-07 | 2 | -4/+4 |
| | | | | | | | | Patch by Sayan Chowdhury. | ||||
* | | Issue #17911: Tweak traceback documentation. | Berker Peksag | 2015-03-06 | 1 | -71/+95 |
| | | | | | | | | | | | | | | | | Changes: * Fixed reSt markup * Fixed cross references * Fixed a couple of typos | ||||
* | | Issue #22936: Allow showing local variables in unittest errors. | Robert Collins | 2015-03-06 | 1 | -6/+19 |
| | | |||||
* | | Issue #22936: Make it possible to show local variables in tracebacks. | Robert Collins | 2015-03-05 | 1 | -10/+18 |
| | | |||||
* | | merge 3.4 | Benjamin Peterson | 2015-03-05 | 1 | -3/+11 |
|\ \ | |/ | |||||
| * | expose X509_V_FLAG_TRUSTED_FIRST | Benjamin Peterson | 2015-03-05 | 1 | -3/+11 |
| | |