Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge 3.5 (issue #26654) | Yury Selivanov | 2016-09-15 | 3 | -15/+23 |
|\ | |||||
| * | Issue #26654: Inspect functools.partial in asyncio.Handle.__repr__. | Yury Selivanov | 2016-09-15 | 3 | -15/+23 |
| | | | | | | | | Patch by iceboy. | ||||
* | | Merge 3.5 (issue #28174) | Yury Selivanov | 2016-09-15 | 2 | -12/+24 |
|\ \ | |/ | |||||
| * | Issue #28174: Handle when SO_REUSEPORT isn't properly supported (asyncio) | Yury Selivanov | 2016-09-15 | 2 | -12/+24 |
| | | | | | | | | Patch by Seth Michael Larson. | ||||
* | | Merge 3.5 (issue #27906) | Yury Selivanov | 2016-09-15 | 5 | -36/+57 |
|\ \ | |/ | |||||
| * | Issue #27906: Fix socket accept exhaustion during high TCP traffic. | Yury Selivanov | 2016-09-15 | 5 | -36/+57 |
| | | | | | | | | Patch by Kevin Conway. | ||||
| * | Another asyncio sync. | Yury Selivanov | 2016-09-15 | 2 | -5/+11 |
| | | |||||
| * | asyncio: Sync with the upstream | Yury Selivanov | 2016-09-15 | 2 | -0/+64 |
| | | |||||
* | | Merge heads 3.6 | Yury Selivanov | 2016-09-15 | 1 | -4/+1 |
|\ \ | |||||
| * | | asyncio: Drop debug code | Yury Selivanov | 2016-09-15 | 1 | -4/+1 |
| | | | |||||
* | | | Use requires_os_func() to skip SpawnTests | Berker Peksag | 2016-09-15 | 1 | -10/+14 |
|/ / | |||||
* | | Merge heads | Yury Selivanov | 2016-09-15 | 1 | -8/+16 |
|\ \ | |||||
| * | | Merge 3.5 (asyncio) | Yury Selivanov | 2016-09-15 | 1 | -8/+16 |
| | | | |||||
* | | | Make SpawnTest.create_args() keyword-only | Berker Peksag | 2016-09-15 | 1 | -5/+5 |
| | | | |||||
* | | | Issue #28114: Fix a crash in parse_envlist() when env contains byte strings | Berker Peksag | 2016-09-15 | 1 | -2/+15 |
|/ / | | | | | | | Patch by Eryk Sun. | ||||
* | | Issue #26182: Raise DeprecationWarning for improper use of async/await keywords | Yury Selivanov | 2016-09-15 | 4 | -58/+104 |
| | | |||||
* | | Unicode 9.0.0 | Benjamin Peterson | 2016-09-15 | 1 | -2/+6 |
| | | | | | | | | | | Not completely mechanical since support for East Asian Width changes—emoji codepoints became Wide—had to be added to unicodedata. | ||||
* | | Issue #27599: Fixed buffer overrun in binascii.b2a_qp() and binascii.a2b_qp(). | Serhiy Storchaka | 2016-09-14 | 1 | -23/+92 |
|\ \ | |/ | |||||
| * | Issue #27599: Fixed buffer overrun in binascii.b2a_qp() and binascii.a2b_qp(). | Serhiy Storchaka | 2016-09-14 | 1 | -23/+92 |
| | | |||||
* | | Issue #28114: Add unit tests on os.spawn*() | Victor Stinner | 2016-09-14 | 1 | -0/+86 |
| | | |||||
* | | Issue #28131: Merge from 3.5 | Berker Peksag | 2016-09-14 | 1 | -0/+13 |
|\ \ | |/ | |||||
| * | Issue #28131: Fix a regression in zipimport's compile_source() | Berker Peksag | 2016-09-14 | 1 | -0/+13 |
| | | | | | | | | zipimport should use the same optimization level as the interpreter. | ||||
* | | Fix _PyDict_Pop() on pending key | Victor Stinner | 2016-09-13 | 1 | -0/+9 |
| | | | | | | | | | | | | | | Issue #28120: Fix dict.pop() for splitted dictionary when trying to remove a "pending key" (Not yet inserted in split-table). Patch by Xiang Zhang. | ||||
* | | merge 3.5 | Benjamin Peterson | 2016-09-13 | 1 | -1/+2 |
|\ \ | |/ | |||||
| * | Issue #27952: Capture stderr in run_script() | Berker Peksag | 2016-09-13 | 1 | -1/+2 |
| | | |||||
* | | Update pydoc topics for 3.6.0b1 | Ned Deily | 2016-09-12 | 1 | -87/+226 |
| | | |||||
* | | Issue #27322: back out the commit. needs to be addressed after beta1. | Christian Heimes | 2016-09-12 | 1 | -1/+0 |
| | | |||||
* | | Issue #27322: skip test_compile_path when sys.path is not writeable. | Christian Heimes | 2016-09-12 | 1 | -0/+1 |
| | | |||||
* | | merge | Christian Heimes | 2016-09-12 | 17 | -33/+149 |
|\ \ | |||||
| * | | Issue #17941: Add a *module* parameter to collections.namedtuple() | Raymond Hettinger | 2016-09-12 | 2 | -6/+14 |
| | | | |||||
| * | | merge | Raymond Hettinger | 2016-09-12 | 2 | -0/+19 |
| |\ \ | | |/ | |||||
| | * | Issue #17582: xml.etree.ElementTree nows preserves whitespaces in attributes | Raymond Hettinger | 2016-09-12 | 2 | -0/+19 |
| | | | | | | | | | | | | (Patch by Duane Griffin. Reviewed and approved by Stefan Behnel.) | ||||
| * | | Merge 3.5 - Issue #15308: Add 'interrupt execution' (^C) to Shell menu. | Terry Jan Reedy | 2016-09-12 | 4 | -25/+51 |
| |\ \ | | |/ | | | | | | | Patch by Roger Serwy, updated by Bayard Randel. | ||||
| | * | Issue #15308: Add 'interrupt execution' (^C) to Shell menu. | Terry Jan Reedy | 2016-09-12 | 3 | -26/+49 |
| | | | | | | | | | | | | Patch by Roger Serwy, updated by Bayard Randel. | ||||
| * | | Issue #28095: Temporarily disable part of test_startup_imports on OS X. | Ned Deily | 2016-09-12 | 1 | -1/+3 |
| | | | |||||
| * | | Fixes test_getargs2 to get the buildbots working again. | Steve Dower | 2016-09-12 | 1 | -1/+1 |
| | | | |||||
| * | | Merge 3.5 (issue #27456) | Yury Selivanov | 2016-09-12 | 1 | -0/+16 |
| |\ \ | | |/ | |||||
| | * | Issue #27456: asyncio: Set TCP_NODELAY by default. | Yury Selivanov | 2016-09-12 | 1 | -0/+16 |
| | | | |||||
| * | | Merge 3.5 (asyncio) | Yury Selivanov | 2016-09-12 | 7 | -0/+45 |
| |\ \ | | |/ | |||||
| | * | asyncio: Add set_protocol / get_protocol methods to Transports | Yury Selivanov | 2016-09-12 | 7 | -0/+45 |
| | | | |||||
| | * | Issue #28079: Update typing and test typing from python/typing repo. | Guido van Rossum | 2016-09-11 | 2 | -63/+407 |
| | | | | | | | | | | | | Ivan Levkivskyi (3.5 version) | ||||
| | * | #19003: Only replace \r and/or \n line endings in email.generator. | R David Murray | 2016-09-11 | 2 | -6/+22 |
| | | | | | | | | | | | | | | | This is a further restoration of backward compatibility, as well as being correct per the RFCs. | ||||
* | | | Issue #28093: Check more invalid combinations of PROTOCOL_TLS_CLIENT / ↵ | Christian Heimes | 2016-09-12 | 1 | -3/+23 |
|/ / | | | | | | | PROTOCOL_TLS_SERVER | ||||
* | | Add another f-string comment test, to make sure # are being caught in the ↵ | Eric V. Smith | 2016-09-11 | 1 | -0/+2 |
| | | | | | | | | right place. | ||||
* | | Make an f-string error message more exact and consistent. | Eric V. Smith | 2016-09-11 | 1 | -1/+2 |
| | | |||||
* | | Issue #28079: Update typing and test typing from python/typing repo. | Guido van Rossum | 2016-09-11 | 2 | -144/+289 |
| | | | | | | | | Ivan Levkivskyi (3.6 version) | ||||
* | | Issue #28085: Add PROTOCOL_TLS_CLIENT and PROTOCOL_TLS_SERVER for SSLContext | Christian Heimes | 2016-09-11 | 2 | -0/+34 |
| | | |||||
* | | issue28082: better name for Flag | Ethan Furman | 2016-09-11 | 1 | -2/+2 |
| | | |||||
* | | Issue #27213: Fixed different issues with reworked CALL_FUNCTION* opcodes. | Serhiy Storchaka | 2016-09-11 | 3 | -12/+11 |
| | | | | | | | | | | | | | | | | | | | | | | * BUILD_TUPLE_UNPACK and BUILD_MAP_UNPACK_WITH_CALL no longer generated with single tuple or dict. * Restored more informative error messages for incorrect var-positional and var-keyword arguments. * Removed code duplications in _PyEval_EvalCodeWithName(). * Removed redundant runtime checks and parameters in _PyStack_AsDict(). * Added a workaround and enabled previously disabled test in test_traceback. * Removed dead code from the dis module. | ||||
* | | Merge: #19003: Only replace \r and/or \n line endings in email.generator. | R David Murray | 2016-09-11 | 2 | -6/+22 |
| | |