Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #23685: Fix usage of PyMODINIT_FUNC in _json, _scproxy, nis, pyexpat | Victor Stinner | 2015-03-17 | 5 | -15/+5 |
| | | | | | | | | _codecs_cn, _codecs_hk, _codecs_iso2022, _codecs_jp, _codecs_kr and _codecs_tw modules. pyexpat.c doesn't need to redeclare PyMODINIT_FUNC, it's already declared in Include/pyport.h. | ||||
* | Issue #22585: null merge | Ned Deily | 2015-03-17 | 0 | -0/+0 |
|\ | |||||
| * | Issue #22585: make URandomFDTests test case actually run | Ned Deily | 2015-03-17 | 1 | -0/+1 |
| | | |||||
* | | Revert changeset d927047b1d8eb87738676980a24930d053ba2150 | Victor Stinner | 2015-03-17 | 4 | -99/+57 |
| | | | | | | | | 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 #23680: Reduce risk of race condition in check_interrupted_write() of | Victor Stinner | 2015-03-16 | 1 | -2/+2 |
| | | | | | | | | | | | | test_io. Allocate the large data before scheduling an alarm in 1 second. On very slow computer, the alarm rings sometimes during the memory allocation. | ||||
* | | Issue #23680: Reduce risk of race condition in check_interrupted_write_retry() | Victor Stinner | 2015-03-16 | 1 | -1/+8 |
| | | | | | | | | | | | | of test_io. Allocate the large data before scheduling an alarm in 1 second. On very slow computer, the alarm rings sometimes during the memory allocation. | ||||
* | | Issue #23571: Restore removed assert(!PyErr_Occurred()); in | Victor Stinner | 2015-03-16 | 1 | -0/+7 |
| | | | | | | | | | | | | | | PyEval_CallObjectWithKeywords() Sorry Serhiy, I missed your explanation because the review email was moved to my Spam folder :-( | ||||
* | | Use non-zero and non-last positions in error handler tests. | Serhiy Storchaka | 2015-03-16 | 1 | -30/+37 |
|\ \ | |/ | |||||
| * | Use non-zero and non-last positions in error handler tests. | Serhiy Storchaka | 2015-03-16 | 1 | -24/+28 |
| | | |||||
* | | Issue #23585: make patchcheck will ensure the interpreter is built. | Robert Collins | 2015-03-16 | 2 | -1/+5 |
| | | |||||
* | | Issue #23631: Fix traceback.format_list when a traceback has been mutated. | Robert Collins | 2015-03-16 | 3 | -5/+21 |
| | | |||||
* | | Increased coverage of standard codec error handlers. | Serhiy Storchaka | 2015-03-15 | 1 | -133/+197 |
|\ \ | |/ | |||||
| * | Increased coverage of standard codec error handlers. | Serhiy Storchaka | 2015-03-15 | 1 | -76/+158 |
| | | |||||
* | | 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 #23568: Add rdivmod support to MagicMock() objects. | Berker Peksag | 2015-03-14 | 3 | -1/+21 |
|\ \ | |/ | | | | | Patch by Håkan Lövdahl. | ||||
| * | Issue #23568: Add rdivmod support to MagicMock() objects. | Berker Peksag | 2015-03-14 | 3 | -1/+21 |
| | | | | | | | | Patch by Håkan Lövdahl. | ||||
* | | Issue #2052: Add charset parameter to HtmlDiff.make_file(). | Berker Peksag | 2015-03-14 | 6 | -10/+63 |
| | | |||||
* | | 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 |
| | | |||||
* | | Issue #23606: Temporarily suppress test for CRT name. | Steve Dower | 2015-03-14 | 1 | -1/+3 |
| | | |||||
* | | Fixes incorrect use of GetLastError where errno should be used. | Steve Dower | 2015-03-14 | 1 | -6/+6 |
|\ \ | |/ | |||||
| * | Fixes incorrect use of GetLastError where errno should be used. | Steve Dower | 2015-03-14 | 1 | -6/+6 |
| | | |||||
* | | 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 |
| | | |||||
* | | Add some periods to the ends of a couple comments | Brett Cannon | 2015-03-13 | 1 | -2/+2 |
| | | |||||
* | | 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 | 7 | -4/+720 |
| | | | | | | | | Thanks to Paul Moore for the PEP and implementation. | ||||
* | | Issue #23566: Skip "fd" tests of test_faulthandler on Windows | Victor Stinner | 2015-03-13 | 1 | -0/+8 |
| | | | | | | | | subprocess doesn't support pass_fds on Windows. | ||||
* | | test | Victor Stinner | 2015-03-12 | 4 | -57/+99 |
| | | |||||
* | | Issue #23138: Fixed parsing cookies with absent keys or values in cookiejar. | Serhiy Storchaka | 2015-03-13 | 3 | -15/+57 |
|\ \ | |/ | | | | | Patch by Demian Brecht. | ||||
| * | Issue #23138: Fixed parsing cookies with absent keys or values in cookiejar. | Serhiy Storchaka | 2015-03-13 | 3 | -15/+57 |
| | | | | | | | | Patch by Demian Brecht. | ||||
* | | Issue #23051: multiprocessing.Pool methods imap() and imap_unordered() now | Serhiy Storchaka | 2015-03-13 | 4 | -14/+75 |
|\ \ | |/ | | | | | | | handle exceptions raised by an iterator. Patch by Alon Diamant and Davin Potts. | ||||
| * | Issue #23051: multiprocessing.Pool methods imap() and imap_unordered() now | Serhiy Storchaka | 2015-03-13 | 4 | -14/+75 |
| | | | | | | | | | | handle exceptions raised by an iterator. Patch by Alon Diamant and Davin Potts. | ||||
* | | 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 | 19 | -124/+86 |
|\ \ | |/ | | | | | | | 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 | 19 | -124/+72 |
| | | | | | | | | 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. |