Staging
v0.8.1

sort by:
Revision Author Date Message Commit Date
a24d2d8 Issue #10673: Document that Process.exitcode can be used to determine timeout Patch by Tom Clark. 26 September 2016, 20:22:22 UTC
8b6b508 Issue #18893: Fix invalid exception handling in Lib/ctypes/macholib/dyld.py Patch by Madison May. 26 September 2016, 20:06:32 UTC
6129e14 Document that os.mknod() is not available on Windows Reported by Regina Ochotzki on docs@p.o. 26 September 2016, 19:50:11 UTC
996e5f9 os.genenvb() is not availabnle under Windows 26 September 2016, 19:44:07 UTC
1d480be Issues #25909, #28211: Restored correct documentation of PyMapping_Items, PyMapping_Keys and PyMapping_Values. Based on patch by Xiang Zhang. 26 September 2016, 17:52:41 UTC
b02f8fc Issue #11957: Restored re tests for passing count and maxsplit as positional arguments. 25 September 2016, 17:36:23 UTC
e6f0199 Issue #27611: Fixed support of default root window in the tkinter.tix module. 25 September 2016, 13:46:10 UTC
613f8e5 Issue #28203: Fix incorrect type in error message from complex(1.0, {2:3}). Patch by Soumya Sharma. 24 September 2016, 14:26:36 UTC
8609cda Issue #28221: Remove unused assignment from test_asyncore_server() The later value of FOO is fine. The test just needs to verify that the server converted it to lowercase. 23 September 2016, 23:45:56 UTC
3cb091e Increase buffer for readlink() in case OS will support longer names one day. 23 September 2016, 18:24:28 UTC
2f366ca Add an extra byte for null in case we ever get very long unicode names. 23 September 2016, 18:20:27 UTC
bd2ffa5 Issue #27829: regrtest -W displays stderr if env changed regrtest -W hides output if a test pass, but also when env changed and so the env changed warning is hidden. So it's hard to debug. With this change, stderr is now always displayed when a test doesn't pass. 23 September 2016, 09:13:53 UTC
fb4a96a Issue #28251: Improvements to help manuals on Windows. 23 September 2016, 00:07:56 UTC
208bbd2 Silence GCC warning. The code was correct, but GCC is not enough clever. 22 September 2016, 16:59:46 UTC
55b196a Make Lib/test/ssltests.py more useful and faster for OpenSSL testing 22 September 2016, 14:49:35 UTC
463ef2b Fix references to Python 3’s socketserver (lowercase) module 22 September 2016, 09:37:56 UTC
bb8b1cb Issue #27348: Restore “Exception: None” formatting in traceback module This fixes a regression caused by revision 73afda5a4e4c. Also reverts the decimal test workaround added in revision 5f3dd0a2b1ab. Remove test_without_exception(). According to revision ecaafc32c500, this was added in Python 2 so that print_exc() would output “None” when called with no exception set. However print_exc() never worked like this in Python 3, and the use case is not documented. Restore TracebackCases class name (instead of SyntaxTracebackCases), because the class also tests other exceptions. 22 September 2016, 09:37:39 UTC
92bb90a Extend the test to lower pickle protocols. 22 September 2016, 08:39:25 UTC
16ea19f Issue #25651: Allow falsy values to be used for msg parameter of subTest() 21 September 2016, 16:34:15 UTC
1ddf53d Fix PyUnicode_FromFormatV() error handling Issue #28233: Fix a memory leak if the format string contains a non-ASCII character, destroy the unicode writer. 21 September 2016, 12:13:14 UTC
0256f42 test_asynico: fix test_sock_connect_sock_write_race() Issue #28176: Increase timeout from 10 seconds to 60 seconds. 21 September 2016, 07:15:36 UTC
6d8bc46 Catch EPERM error in py_getrandom() Issue #27955: Fallback on reading /dev/urandom device when the getrandom() syscall fails with EPERM, for example when blocked by SECCOMP. 20 September 2016, 20:46:02 UTC
af59732 Cleanup random.c Issue #27955: modify py_getrnadom() and dev_urandom() * Add comments from Python 3.7 * PEP 7 style: add {...} 20 September 2016, 20:26:18 UTC
a327331 Make 3.7 the current dev version in the html version of the docs. 20 September 2016, 19:00:07 UTC
918aa89 remove trailing whitespace 20 September 2016, 05:16:36 UTC
647680e Docs: Correctly link to the methods 19 September 2016, 22:01:53 UTC
57bda33 merge 3.4 19 September 2016, 06:43:18 UTC
26d998c properly handle the single null-byte file (closes #24022) 19 September 2016, 06:41:11 UTC
7eb1bec Issue #28189: dictitems_contains no longer swallows compare errors. (Patch by Xiang Zhang) 19 September 2016, 04:45:11 UTC
96b2dd5 Issue #26661: setup.py now detects system libffi with multiarch wrapper. 18 September 2016, 12:33:30 UTC
5a5ae74 Issue #26610: Skip test_with_pip if _ctypes is not available in OpenIndiana 18 September 2016, 11:52:25 UTC
bf3c1c3 Issue #28075: Fix test_access_denied in Python 3.5 I forgot there two variations of os.stat() in Python 3.5. 18 September 2016, 10:56:29 UTC
17a564e Add file missed from backport 18 September 2016, 00:29:37 UTC
1ec262b Issue #27932: Prevent memory leak in win32_ver(). 18 September 2016, 00:25:42 UTC
1c75c18 Issue #28110: launcher.msi has different product codes between 32-bit and 64-bit 17 September 2016, 23:12:55 UTC
bdcc8f9 Issue #28176: Increase timeout for test_sock_connect_sock_write_race 17 September 2016, 22:06:50 UTC
bcfb35f Issue #26384: Fix UnboundLocalError in socket._sendfile_use_sendfile 17 September 2016, 20:22:06 UTC
9a1c91a Fix test_access_denied in 3.5 17 September 2016, 13:20:55 UTC
0b4dc48 Issue #28075: Check for ERROR_ACCESS_DENIED in Windows implementation of os.stat() Patch by Eryk Sun. 17 September 2016, 12:49:59 UTC
6d57fe1 Issue #28139: Fix messed up indentation Also update the classmethod and staticmethod doc strings and comments to match the RST documentation. 17 September 2016, 03:26:16 UTC
4a72a7b Issue #25270: Prevent codecs.escape_encode() from raising SystemError when an empty bytestring is passed 16 September 2016, 14:31:06 UTC
a4961e5 Issue #28181: Get antigravity over HTTPS. Patch by Kaartic Sivaraam. 16 September 2016, 11:48:10 UTC
f676748 Issue #25895: Enable WebSocket URL schemes in urllib.parse.urljoin Patch by Gergely Imreh and Markus Holtermann. 16 September 2016, 11:43:58 UTC
2dc77f0 Issue #28145: Spelling fixes 16 September 2016, 00:46:05 UTC
525aedc Issue #27759: Fix selectors incorrectly retain invalid file descriptors. Patch by Mark Williams. 15 September 2016, 23:30:42 UTC
d6c6771 Issue #28176: Fix callbacks race in asyncio.SelectorLoop.sock_connect. 15 September 2016, 21:56:36 UTC
4c5bf3b Issue #26909: Fix slow pipes IO in asyncio. Patch by INADA Naoki. 15 September 2016, 20:51:48 UTC
45dccda Issue #26654: Inspect functools.partial in asyncio.Handle.__repr__. Patch by iceboy. 15 September 2016, 19:58:15 UTC
5587d7c Issue #28174: Handle when SO_REUSEPORT isn't properly supported (asyncio) Patch by Seth Michael Larson. 15 September 2016, 19:45:07 UTC
a1b0e7d Issue #27906: Fix socket accept exhaustion during high TCP traffic. Patch by Kevin Conway. 15 September 2016, 18:13:15 UTC
4357cf6 Another asyncio sync. 15 September 2016, 17:49:08 UTC
f6d991d asyncio: Sync with the upstream 15 September 2016, 17:10:51 UTC
e6265e9 Issue #27599: Fixed buffer overrun in binascii.b2a_qp() and binascii.a2b_qp(). 14 September 2016, 13:34:37 UTC
7ce2013 Restrict name_length to NAME_MAXLEN in unicodedata_UCD_lookup() 14 September 2016, 08:25:46 UTC
1f28a47 merge heads 14 September 2016, 05:46:37 UTC
59e5e0d improve type-safe of and prevent double-frees in get_locale_info (#28119) 14 September 2016, 05:43:45 UTC
e907885 Issue #26171: Null merge 14 September 2016, 05:39:15 UTC
354c2f9 Issue #26171: Null merge 14 September 2016, 05:38:36 UTC
d751040 Issue #26171: Prevent buffer overflow in get_data Backport of 01ddd608b85c. 14 September 2016, 05:37:28 UTC
4aa74c4 Issue #28131: Fix a regression in zipimport's compile_source() zipimport should use the same optimization level as the interpreter. 14 September 2016, 05:09:48 UTC
1341926 Issue #15819: Remove old unconditional -IInclude option A newer instance of this option, enabled in the configure script when building outside the source tree, made this redundant. 13 September 2016, 12:21:47 UTC
a33e9f7 Issue #28104: More accurately document set method signatures 13 September 2016, 06:38:50 UTC
529d130 merge heads 13 September 2016, 05:09:11 UTC
35ee948 restructure fp_setreadl so as to avoid refleaks (closes #27981) 13 September 2016, 05:06:58 UTC
ac2d1c7 Issue #27952: Capture stderr in run_script() 13 September 2016, 04:55:54 UTC
720acbf Issue #27981: Fix refleak in fp_setreadl() Patch by David Dudson. 13 September 2016, 04:39:00 UTC
7927e75 Issue #28103: Use ``'...'`` style in zipfile documentation Patch by Stephen J. Turnbull. 13 September 2016, 01:49:12 UTC
076366c Issue #17582: xml.etree.ElementTree nows preserves whitespaces in attributes (Patch by Duane Griffin. Reviewed and approved by Stefan Behnel.) 12 September 2016, 06:18:03 UTC
4b73676 Issue #15308: Add 'interrupt execution' (^C) to Shell menu. Patch by Roger Serwy, updated by Bayard Randel. 12 September 2016, 05:50:03 UTC
ed6224e Issue #28045: Fix comment in range_contains_long() Patch by wim glenn. 12 September 2016, 04:47:04 UTC
c5ee3ca Issue #28066: Fix include search directory logic for out-of-tree builds 12 September 2016, 01:32:03 UTC
44c19ec Issue #27456: asyncio: Set TCP_NODELAY by default. 12 September 2016, 01:39:31 UTC
a05a6ef asyncio: Add set_protocol / get_protocol methods to Transports 12 September 2016, 01:11:02 UTC
06e18a7 Issue #26511: Reference the id() function in the 'is' and 'is not' docs 12 September 2016, 00:23:49 UTC
0a6976d Issue #28079: Update typing and test typing from python/typing repo. Ivan Levkivskyi (3.5 version) 11 September 2016, 22:34:56 UTC
0e0cfd7 #19003: Only replace \r and/or \n line endings in email.generator. This is a further restoration of backward compatibility, as well as being correct per the RFCs. 11 September 2016, 21:22:56 UTC
e4946e7 Issue #23105: Updated documentation on open() flag constants. 11 September 2016, 14:15:59 UTC
1c697a5 Issue #20100: Clarify that passing flags to epoll() has no effect 11 September 2016, 12:45:32 UTC
3d639b2 Closed #26533: expanded on behaviour of logging.config.listen(). 11 September 2016, 12:15:06 UTC
8d82559 Fixes #25671: Updated prompt handling in activate.fish. 11 September 2016, 11:52:08 UTC
b766538 Issue #27952: Get fixcid.py working with the re module 11 September 2016, 09:32:26 UTC
53ba2d1 Issue #27991: Remove incorrect sentence about store_true Patch by py.user. 11 September 2016, 10:02:27 UTC
3a95f45 Remove the debug print that i accidentally left in. 11 September 2016, 03:39:36 UTC
56ff5f7 Issue #26141: Update docs for typing.py. Ivan Levkivskyi. (Backport from the 3.6 version) 11 September 2016, 02:03:22 UTC
1816dfe Issue #28073: Improve wording around None. Michael Lee. 11 September 2016, 01:49:14 UTC
cc66a65 Backported tests for issue #28070. 10 September 2016, 22:39:51 UTC
d92cecb IDLE newx items. 10 September 2016, 20:24:54 UTC
109bc3a Closes #28059: Fixes test_platform to set PYTHONPATH for .pyd files 10 September 2016, 19:19:42 UTC
36820dd Issue #25221: Fix corrupted result from PyLong_FromLong(0) when Python is compiled with NSMALLPOSINTS = 0. 10 September 2016, 19:17:36 UTC
f028d9f Issue #27932: Backs out change 10 September 2016, 18:52:18 UTC
99e843b Correct spelling in documentation and code comment 10 September 2016, 10:38:28 UTC
c7a070e regrtest: accept options after test names 10 September 2016, 08:27:28 UTC
8ddcf3a Issue #28019: itertools.count() no longer rounds non-integer step in range between 1.0 and 2.0 to 1. 10 September 2016, 06:49:24 UTC
e617521 Use raw string for regexp 10 September 2016, 04:39:10 UTC
528db31 Issue #27566: Fix clean target in freeze makefile (patch by Lisa Roach) 10 September 2016, 01:38:20 UTC
f2bdb6b Issue #27705: Update message in validate_ucrtbase.py 10 September 2016, 01:21:15 UTC
2832574 Issue #25969: Update the lib2to3 grammar to handle the unpacking generalizations added in 3.5. 10 September 2016, 01:18:52 UTC
dbdf029 remove fix_callable - callable() was readded many releases ago. 10 September 2016, 01:14:33 UTC
6a294a5 Issue #27932: Fixes memory leak in platform.win32_ver() 10 September 2016, 01:01:25 UTC
8dcc48e Issue #25758: Prevents zipimport from unnecessarily encoding a filename (patch by Eryk Sun) 10 September 2016, 00:27:33 UTC
back to top