| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | | Issue #23051: multiprocessing.Pool methods imap() and imap_unordered() now | Serhiy Storchaka | 2015-03-13 | 4 | -14/+75 |
|\ \
| |/ |
|
| * | Issue #23051: multiprocessing.Pool methods imap() and imap_unordered() now | Serhiy Storchaka | 2015-03-13 | 4 | -14/+75 |
|
|
* | | 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 |
|\ \
| |/ |
|
| * | Issue #23081: Document that PySequence_List also accepts iterables. | Berker Peksag | 2015-03-13 | 1 | -2/+3 |
|
|
* | | Issue #22154: Add an example to show context management protocol support of Z... | Berker Peksag | 2015-03-13 | 1 | -0/+7 |
|\ \
| |/ |
|
| * | Issue #22154: Add an example to show context management protocol support of Z... | Berker Peksag | 2015-03-13 | 1 | -0/+7 |
|
|
* | | Issue #23641: Cleaned out legacy dunder names from tests and docs. | Serhiy Storchaka | 2015-03-12 | 19 | -124/+86 |
|\ \
| |/ |
|
| * | Issue #23641: Cleaned out legacy dunder names from tests and docs. | Serhiy Storchaka | 2015-03-12 | 19 | -124/+72 |
|
|
* | | 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 |
|
|
* | | Issue #23581: Add matmul support to MagicMock. | Berker Peksag | 2015-03-12 | 3 | -1/+14 |
|
|
* | | Issue #20617: Remove unused import in test_ssl. | Berker Peksag | 2015-03-12 | 1 | -1/+0 |
|\ \
| |/ |
|
| * | Issue #20617: Remove unused import in test_ssl. | Berker Peksag | 2015-03-12 | 1 | -1/+0 |
|
|
* | | Issue #23644, #22038: Move #include <stdatomic.c> inside the extern "C" { ... } | Victor Stinner | 2015-03-12 | 1 | -4/+4 |
|
|
* | | Issue #23566: enable(), register(), dump_traceback() and dump_traceback_later() | Victor Stinner | 2015-03-12 | 5 | -78/+172 |
|
|
* | | Merge 3.4 (test_os) | Victor Stinner | 2015-03-12 | 1 | -37/+70 |
|\ \
| |/ |
|
| * | Issue #23605: Refactor os.walk() tests to also run them on os.fwalk() | Victor Stinner | 2015-03-12 | 1 | -37/+70 |
|
|
* | | Issue #22928: Disabled HTTP header injections in http.client. | Serhiy Storchaka | 2015-03-12 | 3 | -0/+97 |
|\ \
| |/ |
|
| * | Issue #22928: Disabled HTTP header injections in http.client. | Serhiy Storchaka | 2015-03-12 | 3 | -0/+97 |
|
|
* | | Issue #23605: os.walk() doesn't need to call entry.is_symlink() if followlinks | Victor Stinner | 2015-03-12 | 1 | -2/+3 |
|
|
* | | Issue #23192: Fixed generator lambdas. Patch by Bruno Cauet. | Serhiy Storchaka | 2015-03-11 | 3 | -2/+24 |
|\ \
| |/ |
|
| * | Issue #23192: Fixed generator lambdas. Patch by Bruno Cauet. | Serhiy Storchaka | 2015-03-11 | 4 | -2/+25 |
|
|
* | | Close issue23486: performance boost for enum member lookup | Ethan Furman | 2015-03-11 | 1 | -1/+10 |
|
|
* | | Issue #23615: Modules bz2, tarfile and tokenize now can be reloaded with | Serhiy Storchaka | 2015-03-11 | 5 | -6/+7 |
|\ \
| |/ |
|
| * | Issue #23615: Modules bz2, tarfile and tokenize now can be reloaded with | Serhiy Storchaka | 2015-03-11 | 5 | -6/+7 |
|
|
* | | Close issue23467: add %r compatibility to bytes and bytearray | Ethan Furman | 2015-03-11 | 3 | -1/+14 |
|
|
* | | Removes unused format string insertion in launcher.c. | Steve Dower | 2015-03-11 | 1 | -1/+1 |
|\ \
| |/ |
|
| * | Removes unused format string insertion in launcher.c. | Steve Dower | 2015-03-11 | 1 | -1/+1 |
|
|
* | | Issue #23629: Fix the default __sizeof__ implementation for variable-sized ob... | Antoine Pitrou | 2015-03-10 | 6 | -52/+22 |
|\ \
| |/ |
|
| * | Issue #23629: Fix the default __sizeof__ implementation for variable-sized ob... | Antoine Pitrou | 2015-03-10 | 6 | -29/+22 |
|
|
* | | Issue #22028: Ensure mimetypes will not open registry keys with embedded nulls | Steve Dower | 2015-03-10 | 1 | -1/+2 |
|\ \
| |/ |
|
| * | Issue #22028: Ensure mimetypes will not open registry keys with embedded nulls | Steve Dower | 2015-03-10 | 1 | -1/+2 |
|
|
* | | Adds note about installed debug binaries. | Steve Dower | 2015-03-10 | 1 | -1/+1 |
|
|
* | | Issue #23606: Disable ctypes.util.find_library("c") on Windows so tests are s... | Steve Dower | 2015-03-10 | 1 | -1/+3 |
|
|
* | | Merge 3.4 (asyncio) | Victor Stinner | 2015-03-10 | 1 | -2/+5 |
|\ \
| |/ |
|
| * | asyncio: Fix repr(BaseSubprocessTransport) if it didn't start yet | Victor Stinner | 2015-03-10 | 1 | -2/+5 |
|
|
* | | 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 |
|\ \
| |/ |
|
| * | Issue #23432: Remove duplicate content from SystemExit docs. | Berker Peksag | 2015-03-10 | 1 | -13/+13 |
|
|
* | | 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 |
|
|
* | | Issue #23605: os.walk() now calls os.scandir() instead of os.listdir(). | Victor Stinner | 2015-03-10 | 3 | -15/+45 |
|
|
* | | Issue #23571: Oops, fix #ifdef assert() | Victor Stinner | 2015-03-09 | 1 | -1/+1 |
|
|
* | | Issue #23619: Ensure C variable is initialized before using it. | Steve Dower | 2015-03-09 | 1 | -2/+1 |
|
|
* | | merge 3.4 | Benjamin Peterson | 2015-03-09 | 1 | -5/+8 |
|\ \
| |/ |
|
| * | fix up import style | Benjamin Peterson | 2015-03-09 | 1 | -5/+8 |
|
|