| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Issue #25455: Fixed a crash in repr of recursive functools.partial objects. | Serhiy Storchaka | 2016-06-12 | 1 | -0/+37 |
| | | |||||
| * | Merge heads | Serhiy Storchaka | 2016-06-12 | 1 | -1/+1 |
| |\ | |||||
| | * | Fix typos and English grammar in documentation and code comment | Martin Panter | 2016-06-12 | 1 | -1/+1 |
| | | | |||||
| * | | Issue #25455: Fixed a crash in repr of ElementTree.Element with recursive tag. | Serhiy Storchaka | 2016-06-12 | 1 | -1/+7 |
| | | | |||||
| * | | Issue #27286: Fixed compiling BUILD_MAP_UNPACK_WITH_CALL opcode. Calling | Serhiy Storchaka | 2016-06-12 | 2 | -0/+9 |
| |/ | | | | | function with generalized unpacking (PEP 448) and conflicting keyword names could cause undefined behavior. | ||||
| * | Issue #16484: Fix pydoc link and test on Windows, by Kaushik Nadikuditi | Martin Panter | 2016-06-12 | 1 | -1/+1 |
| | | |||||
| * | Issue #14209: pkgutil.iter_zipimport_modules ignores the prefix for packages | Łukasz Langa | 2016-06-12 | 1 | -3/+79 |
| | | | | | Patch by James Pickering. | ||||
| * | Issue #21386: Implement missing IPv4Address.is_global property | Berker Peksag | 2016-06-11 | 1 | -0/+3 |
| | | | | | | | It was documented since 07a5610bae9d. Initial patch by Roger Luethi. | ||||
| * | Issue #22970: asyncio: Fix inconsistency cancelling Condition.wait. | Yury Selivanov | 2016-06-11 | 1 | -0/+25 |
| | | | | | Patch by David Coles. | ||||
| * | Issue #27223: aio: Fix _read_ready and _write_ready to respect _conn_lost. | Yury Selivanov | 2016-06-11 | 1 | -17/+13 |
| | | | | | Patch by Łukasz Langa. | ||||
| * | Issue #27243: Fix __aiter__ protocol | Yury Selivanov | 2016-06-09 | 2 | -21/+79 |
| | | |||||
| * | Issue #27066: Fixed SystemError if a custom opener (for open()) returns | Barry Warsaw | 2016-06-08 | 1 | -0/+16 |
| | | | | | a negative number without setting an exception. | ||||
| * | Sync typing.py with upstream. | Guido van Rossum | 2016-06-08 | 1 | -2/+36 |
| | | | | | | | | | | (Upstream is https://github.com/python/typing) - Add TYPE_CHECKING (false at runtime, true in type checkers) (upstream #230). - Avoid error on Union[xml.etree.cElementTree.Element, str] (upstream #229). - Repr of Tuple[()] should be 'Tuple[()]' (upstream #231). - Add NewType() (upstream #189). | ||||
| * | asyncio: Remove asyncio.timeout() context manager. | Yury Selivanov | 2016-06-08 | 1 | -187/+0 |
| | | | | | | | | It will probably be added back in Python 3.6, once its compatibility issues are resolved; see [1] for more details. [1] https://mail.python.org/pipermail/async-sig/2016-June/000045.html | ||||
| * | Issue #27136: Fix DNS static resolution; don't use it in getaddrinfo | Yury Selivanov | 2016-06-08 | 3 | -76/+54 |
| | | | | | Patch by A. Jesse Jiryu Davis | ||||
| * | Issue #25738: Don’t send message body for 205 Reset Content | Martin Panter | 2016-06-08 | 1 | -0/+44 |
| | | | | | Patch by Susumu Koshiba. | ||||
| * | Issue #21313: Tolerate truncated buildinfo in sys.version | Martin Panter | 2016-06-08 | 1 | -0/+16 |
| | | |||||
| * | Fixed #27251: corrected string/bytes handling in credentials. | Vinay Sajip | 2016-06-07 | 1 | -1/+2 |
| | | |||||
| * | Issue #27164: Allow decompressing raw Deflate streams with predefined zdict | Martin Panter | 2016-06-05 | 1 | -0/+9 |
| | | | | | Based on patch by Xiang Zhang. | ||||
| * | Issue #21916: Added more tests for the turtle module. | Serhiy Storchaka | 2016-06-05 | 1 | -0/+36 |
| | | | | | Original patch by Jelle Zijlstra. | ||||
| * | 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. | ||||
| * | 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. | ||||
| * | Issue #21916: Added tests for the turtle module. | Serhiy Storchaka | 2016-06-04 | 1 | -0/+400 |
| | | | | | Patch by ingrid, Gregory Loyse and Jelle Zijlstra. | ||||
| * | 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. | ||||
| * | 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. | ||||
| * | #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. | ||||
| * | 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 |
| |/ | |||||
| * | asyncio: Fix getaddrinfo to accept service names (for port) | Yury Selivanov | 2016-06-02 | 1 | -0/+20 |
| | | | | | Patch by A. Jesse Jiryu Davis | ||||
| * | asyncio: Support host=b'' for getaddrinfo | Yury Selivanov | 2016-06-02 | 1 | -0/+4 |
| | | |||||
| * | #20973: add total ordering tests for ipaddress | R David Murray | 2016-06-02 | 1 | -0/+33 |
| | | | | | Patch by Tommy Beadle. | ||||
| * | Issue #27171: Fix typos in documentation, comments, and test function names | Martin Panter | 2016-06-02 | 7 | -9/+9 |
| | | |||||
| * | Issue #27125: Remove duplicated words from documentation and comments | Martin Panter | 2016-05-30 | 2 | -2/+2 |
| | | |||||
| * | Issue #27125: Fix various errors like “will [be] inherited” | Martin Panter | 2016-05-29 | 1 | -2/+2 |
| | | |||||
| * | backout 3c9512d8ac0d | Benjamin Peterson | 2016-05-28 | 1 | -8/+0 |
| | | |||||
| * | Issue #20699: Document that “io” methods accept bytes-like objects | Martin Panter | 2016-05-28 | 2 | -27/+74 |
| | | | | | | | | | This matches the usage of ZipFile and BufferedWriter. This still requires return values to be bytes() objects. Also document and test that the write() methods should only access their argument before they return. | ||||
| * | Issue #5784: wbits=0 apparently added in zlib v1.2.3.5 | Martin Panter | 2016-05-27 | 1 | -2/+11 |
| | | |||||
| * | Issue #5784: Expand documentation and tests for zlib wbits parameter | Martin Panter | 2016-05-27 | 1 | -0/+43 |
| | | | | | Based on documentation by AM Kuchling. | ||||
| * | test_warnings: catch stderr and check warning | Victor Stinner | 2016-05-26 | 1 | -1/+9 |
| | | | | | | Check the user warning in test_error_after_default() to not pollute the output, and check the warning logged into stderr. | ||||
| * | Issue #18383: Avoid adding duplicate filters when warnings is reloaded | Martin Panter | 2016-05-26 | 1 | -0/+47 |
| | | | | | Based on patch by Alex Shkop. | ||||
| * | Issue #27076: Doc, comment and tests spelling fixes | Martin Panter | 2016-05-26 | 24 | -29/+29 |
| | | | | | Most fixes to Doc/ and Lib/ directories by Ville Skyttä. | ||||
| * | Added Type[C] implementation to typing.py. | Guido van Rossum | 2016-05-24 | 1 | -0/+28 |
| | | |||||
| * | Issue #26927: Fixed test_mmap on platforms with 32-bit off_t (like Android). | Serhiy Storchaka | 2016-05-23 | 1 | -1/+1 |
| | | | | | Patch by Xavier de Gaye. | ||||
| * | Fixed an error in previous commit. | Serhiy Storchaka | 2016-05-22 | 1 | -1/+1 |
| | | |||||
| * | Temporary skip curses tests on non-tty (issue #27067). | Serhiy Storchaka | 2016-05-22 | 1 | -0/+2 |
| | | |||||
| * | Issue #27067: Improved curses tests. | Serhiy Storchaka | 2016-05-21 | 1 | -68/+97 |
| | | |||||
