Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Automated merge with ssh://hg.python.org/cpython | Steven D'Aprano | 2016-04-17 | 1 | -76/+30 |
|\ | |||||
| * | Shorten secrets module docstring, add function docstrings. | Steven D'Aprano | 2016-04-17 | 1 | -76/+30 |
| | | |||||
* | | Issue #26717: Merge wsgiref fix from 3.5 | Martin Panter | 2016-04-17 | 2 | -1/+25 |
|\ \ | |/ |/| | |||||
| * | Issue #26717: Stop encoding Latin-1-ized WSGI paths with UTF-8 | Martin Panter | 2016-04-17 | 2 | -1/+25 |
| | | | | | | | | Patch by Anthony Sottile. | ||||
* | | Issue #26782: Add STARTUPINFO to subprocess.__all__ on Windows | Martin Panter | 2016-04-16 | 2 | -3/+3 |
| | | |||||
* | | Issue #26782: Merge test_subprocess from 3.5 | Martin Panter | 2016-04-16 | 1 | -1/+2 |
|\ \ | |/ | |||||
| * | Issue #26782: Acknowledge the incomplete status of __all__ in 3.5 | Martin Panter | 2016-04-16 | 1 | -1/+2 |
| | | | | | | | | | | Handle is probably meant to be excluded, and STARTUPINFO will be added to __all__ in 3.6. | ||||
* | | merge 3.5 | Benjamin Peterson | 2016-04-16 | 1 | -1/+1 |
|\ \ | |/ | |||||
| * | test_support -> support | Benjamin Peterson | 2016-04-16 | 1 | -1/+1 |
| | | |||||
* | | merge 3.5 (#26659) | Benjamin Peterson | 2016-04-16 | 1 | -3/+14 |
|\ \ | |/ | |||||
| * | add gc support to slice (closes #26659) | Benjamin Peterson | 2016-04-16 | 1 | -3/+14 |
| | | |||||
* | | Issue #26783: test_os.WalkTests.test_walk_topdown did't test fwalk and bytes. | Serhiy Storchaka | 2016-04-16 | 1 | -1/+1 |
|\ \ | |/ | | | | | Patch by Aviv Palivoda. | ||||
| * | Issue #26783: test_os.WalkTests.test_walk_topdown did't test fwalk and bytes. | Serhiy Storchaka | 2016-04-16 | 1 | -1/+1 |
| | | | | | | | | Patch by Aviv Palivoda. | ||||
* | | merge 3.5 | Senthil Kumaran | 2016-04-16 | 1 | -2/+53 |
|\ \ | |/ | | | | | | | issue26775 - Improve test coverage for urllib.parse Patch contributed by Luiz Poleto. | ||||
| * | issue26775 - Improve test coverage for urllib.parse | Senthil Kumaran | 2016-04-16 | 1 | -2/+53 |
| | | | | | | | | Patch contributed by Luiz Poleto. | ||||
* | | Merge subprocess test from 3.5 | Martin Panter | 2016-04-16 | 1 | -15/+14 |
|\ \ | |/ | |||||
| * | Issue #10838: Run test__all__() everywhere, even if poll() is not available | Martin Panter | 2016-04-16 | 1 | -15/+14 |
| | | |||||
* | | Merge typo fixes from 3.5 | Martin Panter | 2016-04-16 | 2 | -3/+3 |
|\ \ | |/ | |||||
| * | Fix typos in code comments and documentation | Martin Panter | 2016-04-16 | 2 | -3/+3 |
| | | |||||
| * | Issue #25609: Backport typing.ContextManager. | Brett Cannon | 2016-04-15 | 1 | -0/+7 |
| | | | | | | | | | | | | This has no semantic impact as the class is guarded with a hasattr() check; this is being done to keep typing.py in sync between Python 3.5 and 3.6 as requested by Guido. | ||||
| * | Issue #26764: Bacported tests for bytes formatting. | Serhiy Storchaka | 2016-04-15 | 1 | -26/+11 |
| | | |||||
* | | Remove python fallback for compare_digest. | Steven D'Aprano | 2016-04-15 | 1 | -32/+1 |
| | | | | | | | | | | See https://mail.python.org/pipermail/python-dev/2016-April/144198.html https://mail.python.org/pipermail/python-dev/2016-April/144203.html | ||||
* | | Issue #26766: Fix _PyBytesWriter_Finish() | Victor Stinner | 2016-04-15 | 1 | -2/+2 |
| | | | | | | | | | | | | | | Return a bytearray object when bytearray is requested and when the small buffer is used. Fix also test_bytes: bytearray%args must return a bytearray type. | ||||
* | | Issue #26764: Fixed SystemError in bytes.__rmod__. | Serhiy Storchaka | 2016-04-15 | 1 | -26/+11 |
| | | |||||
* | | Issue #15984: Merge PyUnicode doc from 3.5 | Martin Panter | 2016-04-15 | 10 | -14/+14 |
|\ \ | |/ | |||||
| * | Correct “an” → “a” with “Unicode”, “user”, “UTF”, etc | Martin Panter | 2016-04-15 | 10 | -14/+14 |
| | | | | | | | | This affects documentation, code comments, and a debugging messages. | ||||
* | | Fix missing parens. | Steven D'Aprano | 2016-04-15 | 1 | -2/+2 |
| | | |||||
* | | Improve tests with more modern assert* methods and subTests. | Steven D'Aprano | 2016-04-15 | 1 | -22/+25 |
| | | |||||
* | | run Tools/reindent.py on secrets.py to satisfy the checkwhitespace hook | Steven D'Aprano | 2016-04-14 | 1 | -1/+0 |
| | | |||||
* | | Add secrets module and tests. | Steven D'Aprano | 2016-04-14 | 2 | -0/+269 |
| | | |||||
* | | Issue26748: Enum classes should evaluate as True | Ethan Furman | 2016-04-14 | 2 | -0/+19 |
|\ \ | |/ | |||||
| * | Issue26748: Enum classes should evaluate as True | Ethan Furman | 2016-04-14 | 2 | -0/+19 |
| |\ | |||||
| | * | Issue26748: Enum classes should evaluate as True | Ethan Furman | 2016-04-14 | 2 | -0/+19 |
| | | | |||||
* | | | Issue #26718: super.__init__ no longer leaks memory if called multiple times. | Serhiy Storchaka | 2016-04-13 | 1 | -0/+9 |
|\ \ \ | |/ / | | | | | | | NOTE: A direct call of super.__init__ is not endorsed! | ||||
| * | | Issue #26718: super.__init__ no longer leaks memory if called multiple times. | Serhiy Storchaka | 2016-04-13 | 1 | -0/+9 |
| | | | | | | | | | | | | NOTE: A direct call of super.__init__ is not endorsed! | ||||
* | | | merge 3.5. | Senthil Kumaran | 2016-04-13 | 1 | -9/+8 |
|\ \ \ | |/ / | | | | | | | [minor] - Correct the docstring of locale.str. Patch by poleto. | ||||
| * | | [minor] - Correct the docstring of locale.str. Patch by poleto. | Senthil Kumaran | 2016-04-13 | 1 | -9/+8 |
| | | | |||||
* | | | Issue #26404: Add context manager to socketserver, by Aviv Palivoda | Martin Panter | 2016-04-13 | 5 | -31/+38 |
| | | | |||||
* | | | Merge 3.5 | Victor Stinner | 2016-04-12 | 1 | -1/+1 |
|\ \ \ | |/ / | |||||
| * | | Issue #26647: Fix typo in test_grammar | Victor Stinner | 2016-04-12 | 1 | -1/+1 |
| | | | | | | | | | | | | Patch written by Demur Rumed. | ||||
* | | | Issue #26647: Cleanup modulefinder | Victor Stinner | 2016-04-12 | 1 | -5/+5 |
| | | | | | | | | | | | | | | | | | | Use directly dis.opmap[name] rather than dis.opname.index(name). Patch written by Demur Rumed. | ||||
* | | | Issue #26647: Cleanup opcode | Victor Stinner | 2016-04-12 | 1 | -3/+1 |
| | | | | | | | | | | | | Simplify code to build opcode.opname. Patch written by Demur Rumed. | ||||
* | | | Issue #26733: Fixed formatting line numbers in test_dis. | Serhiy Storchaka | 2016-04-12 | 1 | -11/+11 |
|\ \ \ | |/ / | | | | | | | Based on patch by Xiang Zhang. | ||||
| * | | Issue #26733: Fixed formatting line numbers in test_dis. | Serhiy Storchaka | 2016-04-12 | 1 | -11/+11 |
| | | | | | | | | | | | | Based on patch by Xiang Zhang. | ||||
* | | | Issue #26585: Eliminate _quote_html() and use html.escape(quote=False) | Martin Panter | 2016-04-11 | 2 | -9/+37 |
| | | | | | | | | | | | | Patch by Xiang Zhang. | ||||
* | | | Issue #26685: Raise OSError if closing a socket fails | Martin Panter | 2016-04-11 | 2 | -1/+11 |
| | | | |||||
* | | | Issue #26623: TypeError message for JSON unserializible object now contains | Serhiy Storchaka | 2016-04-10 | 1 | -1/+2 |
| | | | | | | | | | | | | | | | object's type name, not object's representation. Based on patch by Mahmoud Lababidi. | ||||
* | | | Issue #26719: More efficient formatting of ints and floats in json. | Serhiy Storchaka | 2016-04-10 | 1 | -10/+10 |
|\ \ \ | |/ / | |||||
| * | | Issue #26719: More efficient formatting of ints and floats in json. | Serhiy Storchaka | 2016-04-10 | 1 | -10/+10 |
| | | | |||||
* | | | Issue #25339: PYTHONIOENCODING now has priority over locale in setting the | Serhiy Storchaka | 2016-04-10 | 1 | -4/+23 |
|\ \ \ | |/ / | | | | | | | error handler for stdin and stdout. |