Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #21916: Added more tests for the turtle module. | Serhiy Storchaka | 2016-06-05 | 1 | -0/+36 |
|\ | | | | | | | Original patch by Jelle Zijlstra. | ||||
| * | Issue #21916: Added more tests for the turtle module. | Serhiy Storchaka | 2016-06-05 | 1 | -0/+36 |
| | | | | | | | | Original patch by Jelle Zijlstra. | ||||
* | | Issue #24291: Merge wsgi partial write fix from 3.5 | Martin Panter | 2016-06-05 | 1 | -1/+80 |
|\ \ | |/ | |||||
| * | Issue #24291: Avoid WSGIRequestHandler doing partial writes | Martin Panter | 2016-06-05 | 1 | -1/+80 |
| | | | | | | | | | | | | | | | | | | If the underlying send() method indicates a partial write, such as when the call is interrupted to handle a signal, the server would silently drop the remaining data. Also add deprecated support for SimpleHandler.stdout.write() doing partial writes. | ||||
* | | merge from 3.5. (moves the issue26372 tests to the proper class) | Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) | 2016-06-05 | 1 | -46/+46 |
|\ \ | |/ | |||||
| * | Move the BrokenPipeError tests to the POSIXProcessTestCase class | Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) | 2016-06-05 | 1 | -46/+46 |
| | | | | | | | | | | instead of the generic ProcessTestCase class as they are posix specific. | ||||
* | | Fixes whitespace issue | Kushal Das | 2016-06-04 | 1 | -1/+0 |
| | | |||||
* | | Issue #25548: Showing memory address of class objects in repl | Kushal Das | 2016-06-04 | 16 | -80/+92 |
| | | |||||
* | | Issue #19611: handle implicit parameters in inspect.signature | Nick Coghlan | 2016-06-04 | 1 | -0/+26 |
| | | | | | | | | | | | | | | | | inspect.signature now reports the implicit ``.0`` parameters generated by the compiler for comprehension and generator expression scopes as if they were positional-only parameters called ``implicit0``. Patch by Jelle Zijlstra. | ||||
* | | issue27186: add open/io.open; patch by Jelle Zijlstra | Ethan Furman | 2016-06-04 | 1 | -0/+26 |
| | | |||||
* | | issue27186: fix fsencode/fsdecode and update tests; patch by Jelle Zijlstra | Ethan Furman | 2016-06-04 | 1 | -6/+13 |
| | | |||||
* | | Issue #21916: Added tests for the turtle module. | Serhiy Storchaka | 2016-06-04 | 1 | -0/+400 |
|\ \ | |/ | | | | | Patch by ingrid, Gregory Loyse and Jelle Zijlstra. | ||||
| * | Issue #21916: Added tests for the turtle module. | Serhiy Storchaka | 2016-06-04 | 1 | -0/+400 |
| | | | | | | | | Patch by ingrid, Gregory Loyse and Jelle Zijlstra. | ||||
* | | issue27186: add PathLike ABC | Ethan Furman | 2016-06-04 | 1 | -0/+2 |
| | | |||||
* | | issue27186: add C version of os.fspath(); patch by Jelle Zijlstra | Ethan Furman | 2016-06-04 | 1 | -0/+7 |
| | | |||||
* | | issue26372 - use os.devnull instead of /dev/null | Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) | 2016-06-04 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | issue26372 - use os.devnull instead of /dev/null | Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) | 2016-06-04 | 1 | -1/+1 |
| | | |||||
* | | Issue #20041: Fixed TypeError when frame.f_trace is set to None. | Serhiy Storchaka | 2016-06-04 | 1 | -0/+9 |
|\ \ | |/ | | | | | Patch by Xavier de Gaye. | ||||
| * | Issue #20041: Fixed TypeError when frame.f_trace is set to None. | Serhiy Storchaka | 2016-06-04 | 1 | -0/+9 |
| | | | | | | | | Patch by Xavier de Gaye. | ||||
* | | issue27182: update fsencode and fsdecode for os.path(); patch by Dusty Phillips | Ethan Furman | 2016-06-04 | 1 | -0/+15 |
| | | |||||
* | | merge from 3.5 - Fixes Issue #26373: subprocess.Popen.communicate | Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) | 2016-06-04 | 1 | -0/+47 |
|\ \ | |/ | | | | | | | now correctly ignores BrokenPipeError when the child process dies before .communicate() is called in more (all?) circumstances. | ||||
| * | Fixes Issue #26373: subprocess.Popen.communicate now correctly ignores | Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) | 2016-06-04 | 1 | -0/+47 |
| | | | | | | | | | | BrokenPipeError when the child process dies before .communicate() is called in more (all?) circumstances. | ||||
* | | Merge: #16484: Fix pydoc doc links to modules whose names are mixed case. | R David Murray | 2016-06-03 | 1 | -0/+14 |
|\ \ | |/ | |||||
| * | #16484: Fix pydoc doc links to modules whose names are mixed case. | R David Murray | 2016-06-03 | 1 | -0/+14 |
| | | | | | | | | Patch by Sean Rodman, test by Kaushik N. | ||||
| * | first step in backout of bad default->3.5 merge d085b4f779af. Create new ↵ | Ned Deily | 2016-06-03 | 1 | -1/+1 |
| | | | | | | | | head and fix whitespace. | ||||
* | | signal, socket, and ssl module IntEnum constant name lookups now return a | Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) | 2016-06-03 | 1 | -0/+36 |
| | | | | | | | | | | | | | | | | consistent name for values having multiple names. Ex: signal.Signals(6) now refers to itself as signal.SIGALRM rather than flipping between that and signal.SIGIOT based on the interpreter's hash randomization seed. This helps finish issue27167. | ||||
* | | Issue #26983: float() now always return an instance of exact float. | Serhiy Storchaka | 2016-06-03 | 2 | -10/+17 |
| | | | | | | | | | | | | The deprecation warning is emitted if __float__ returns an instance of a strict subclass of float. In a future versions of Python this can be an error. | ||||
* | | Merge heads | Serhiy Storchaka | 2016-06-03 | 1 | -0/+21 |
|\ \ | |||||
| * | | issue27167: make the test not care about the exact signal name in the | Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) | 2016-06-03 | 1 | -1/+3 |
| | | | | | | | | | | | | error message as some numbers map to multiple names. | ||||
| * | | Issue #27167: Clarify the subprocess.CalledProcessError error message text | Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) | 2016-06-03 | 1 | -0/+19 |
| | | | | | | | | | | | | when the child process died due to a signal. | ||||
* | | | Merge 3.5. | Serhiy Storchaka | 2016-06-03 | 1 | -30/+32 |
|\ \ \ | |/ / |/| / | |/ | |||||
| * | Issue #27185: Rename test_string_merged.py back to test_string.py. | Serhiy Storchaka | 2016-06-03 | 1 | -0/+0 |
| | | |||||
| * | Issue #27185: Merge test_pep292.py into test_string_merged.py. | Serhiy Storchaka | 2016-06-03 | 2 | -250/+244 |
| |\ | |||||
| | * | Issue #27185: Rename test_pep292.py to test_string_merged.py. | Serhiy Storchaka | 2016-06-03 | 1 | -0/+0 |
| | | | |||||
| * | | Issue #27185: Rename test_string.py to test_string_merged.py. | Serhiy Storchaka | 2016-06-03 | 1 | -0/+0 |
| |/ | |||||
* | | Issue25931: fix tests broken by the conditional define of socketserver.Forking* | Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) | 2016-06-03 | 1 | -6/+7 |
| | | |||||
* | | Merge: #27185: move test_pep292 into test_string. | R David Murray | 2016-06-02 | 2 | -248/+240 |
|\ \ | |||||
| * | | #27185: move test_pep292 into test_string. | R David Murray | 2016-06-02 | 2 | -248/+240 |
| |/ | | | | | | | This makes the Template tests discoverable. Patch by Erin Braswell. | ||||
* | | issue27186 -- initial docs, tests, and python version of os.fspath | Ethan Furman | 2016-06-02 | 1 | -0/+21 |
| | | |||||
* | | Merge 3.5 (asyncio) | Yury Selivanov | 2016-06-02 | 1 | -0/+20 |
|\ \ | |/ | |||||
| * | asyncio: Fix getaddrinfo to accept service names (for port) | Yury Selivanov | 2016-06-02 | 1 | -0/+20 |
| | | | | | | | | Patch by A. Jesse Jiryu Davis | ||||
* | | Merge 3.5 (asyncio) | Yury Selivanov | 2016-06-02 | 1 | -0/+4 |
|\ \ | |/ | |||||
| * | asyncio: Support host=b'' for getaddrinfo | Yury Selivanov | 2016-06-02 | 1 | -0/+4 |
| | | |||||
* | | Merge: #20973: add total ordering tests for ipaddress | R David Murray | 2016-06-02 | 1 | -0/+33 |
|\ \ | |/ | |||||
| * | #20973: add total ordering tests for ipaddress | R David Murray | 2016-06-02 | 1 | -0/+33 |
| | | | | | | | | Patch by Tommy Beadle. | ||||
* | | Issue #27171: Merge typo fixes from 3.5 | Martin Panter | 2016-06-02 | 7 | -9/+9 |
|\ \ | |/ | |||||
| * | Issue #27171: Fix typos in documentation, comments, and test function names | Martin Panter | 2016-06-02 | 7 | -9/+9 |
| | | |||||
* | | Issue #27125: Merge typo fixes from 3.5 | Martin Panter | 2016-05-30 | 2 | -2/+2 |
|\ \ | |/ | |||||
| * | Issue #27125: Remove duplicated words from documentation and comments | Martin Panter | 2016-05-30 | 2 | -2/+2 |
| | | |||||
* | | Issue #27125: Merge typo fixes from 3.5 | Martin Panter | 2016-05-29 | 1 | -2/+2 |
|\ \ | |/ | | | | | Also merge changes from Issue #27117; no actual code changes to 3.6. |