Staging
v0.5.1
https://github.com/python/cpython

sort by:
Revision Author Date Message Commit Date
86fb46d merge 3.3 01 January 2016, 17:12:49 UTC
16b347b reflow 01 January 2016, 17:12:44 UTC
e8c2a95 merge 3.3 01 January 2016, 16:24:21 UTC
75e3630 2016 will be another year of writing copyrighted code 01 January 2016, 16:23:45 UTC
52d6c2c Merge. 21 December 2015, 06:44:06 UTC
c4e70ff Post-release touchups for Python 3.4.4 final. 21 December 2015, 06:42:47 UTC
1014d1c Added tag v3.4.4 for changeset 737efcadf5a6 20 December 2015, 03:31:20 UTC
fa71932 Release bump for Python 3.4.4 final. 20 December 2015, 03:31:10 UTC
5caf39d Rebuild pydoc topics for Python 3.4.4 final. 20 December 2015, 03:28:52 UTC
5aeadb3 Issue #25905: Revert unwanted conversion of ' to ’ RIGHT SINGLE QUOTATION MARK. 18 December 2015, 20:46:57 UTC
999d0f9 Fixes #25844: Corrected =/== typo potentially leading to crash in launcher. 13 December 2015, 09:41:29 UTC
ce70132 Issue #25809: Skip testing platform-dependent French thousands separator 12 December 2015, 06:53:34 UTC
cba0053 docs/asyncio: Twek sections names per Nick Coghlan suggestion 17 December 2015, 02:30:52 UTC
ea4ce1c asyncio/tests: Fix a ResourceWarning due to unclosed loop 17 December 2015, 01:41:11 UTC
3cd863c asyncio/tests: Fix ResourceWarnings related to unclosed transports 17 December 2015, 01:23:26 UTC
5f68ca6 asyncio/tests: Fix some ResourceWarnings 17 December 2015, 00:51:09 UTC
aa78adc asyncio/tests: Fix deprecation warning 17 December 2015, 00:40:03 UTC
ec45226 Normalize whitespace 17 December 2015, 00:35:30 UTC
d5c2a62 asyncio: Skip getaddrinfo if host is already resolved. getaddrinfo takes an exclusive lock on some platforms, causing clients to queue up waiting for the lock if many names are being resolved concurrently. Users may want to handle name resolution in their own code, for the sake of caching, using an alternate resolver, or to measure DNS duration separately from connection duration. Skip getaddrinfo if the "host" passed into create_connection is already resolved. See https://github.com/python/asyncio/pull/302 for details. Patch by A. Jesse Jiryu Davis. 17 December 2015, 00:31:17 UTC
8c084eb merge head 14 December 2015, 04:06:35 UTC
0212c4d Re-fix issue #19284: Don't generate the no-op -R command line parameter to "enable" the always on sys.flags.hash_randomization in _args_from_interpreter_flags() used by multiprocessing and some unittests. This simplifies the code. 14 December 2015, 04:05:55 UTC
220ba72 Fix test_cmd_line not to fail if PYTHONHASHSEED is set to a fixed seed due to test_hash_randomization expecting a different seed per process. 14 December 2015, 04:01:44 UTC
4cb6d37 assert_python_ok docstring typo fix. 14 December 2015, 04:00:24 UTC
2b4f47e #25495: Clarify b2a_base64 documentation vis 57 bytes. 13 December 2015, 23:04:27 UTC
abeb647 Fixes #25844: Corrected =/== typo potentially leading to crash in launcher. 13 December 2015, 09:41:29 UTC
0ac3a0c asyncio: Make Tasks check if Futures are attached to the same event loop See https://github.com/python/asyncio/pull/303 for details 11 December 2015, 16:33:59 UTC
dddc781 asyncio: Sync with github 11 December 2015, 16:32:59 UTC
5e58600 Remove x permissions from Lib/test/test_script_helper.py 07 December 2015, 11:19:49 UTC
f9c88ec Merge. 07 December 2015, 05:58:18 UTC
13cf490 Post-release fixups for Python 3.4.4rc1. 07 December 2015, 05:54:29 UTC
7efaf95 Issue25814: Propagate all errors from custom XML parser handlers in ElementTree.iterparse(). 06 December 2015, 21:51:44 UTC
00a8635 Added tag v3.4.4rc1 for changeset 04f3f725896c 06 December 2015, 13:53:49 UTC
e739601 Version bump for 3.4.4rc1. 06 December 2015, 13:53:35 UTC
8986c44 Rebuilt pydoc topics for 3.4.4rc1. 06 December 2015, 13:51:56 UTC
6364094 Issue #25798: Update OS X 10.5+ 32-bit-only installer to build and link with OpenSSL 1.0.2e. 06 December 2015, 04:51:23 UTC
f7fdbda Issue #25764: Skip the test on OS X The OS X buildbots were failing at the second setrlimit() call with EPERM, as if they were trying to raise the hard limit. The call should be keeping the hard limit the same and raising the soft limit back to its original value, so I don't understand the failure. 05 December 2015, 09:51:52 UTC
e2825e9 merge 3.3 05 December 2015, 08:27:23 UTC
14b2c82 fix reordering 05 December 2015, 08:27:11 UTC
68524e1 merge 3.3 05 December 2015, 08:23:11 UTC
2deaea3 merge 3.2 05 December 2015, 08:21:12 UTC
5e62117 add CVE and issue number 05 December 2015, 08:17:57 UTC
6d8a260 Issue #25800: Fix running test_capi directly 05 December 2015, 06:16:55 UTC
ced699b #24903: Remove misleading error message to fix regression. Before the argparse conversion, compileall would (sometimes) accept multiple paths when -d was specified. Afterward, it does not. The corresponding check in the original code claimed to prevent multiple *directories* from being specified...but it didn't really work even to do that. So this patch fixes the regression by invoking the consenting adults rule: if you specify a combination of arguments to compileall that produces files with inconsistent destdirs (which you could do before), it is on you. Patch by Jake Garver. 05 December 2015, 03:54:38 UTC
31b9410 Issue #25709: Fixed problem with in-place string concatenation and utf-8 cache. 02 December 2015, 23:02:03 UTC
afdd513 Issue #25764: Preserve subprocess fork exception when preexec_fn used Also fix handling of failure to release the import lock. 30 November 2015, 02:21:41 UTC
c7217d7 Issue #6478: _strptime's regexp cache now is reset after changing timezone with time.tzset(). 03 December 2015, 20:21:07 UTC
7aa6908 Issue #25709: Fixed problem with in-place string concatenation and utf-8 cache. 02 December 2015, 23:02:03 UTC
f02de49 Merge heads. 01 December 2015, 14:10:09 UTC
992bfe0 Issue #25767: Link to English Wikipedia instead of French. 01 December 2015, 04:56:17 UTC
c0c00c3 Fix for issue #25177 with the mean of very small and very large numbers. 01 December 2015, 02:48:48 UTC
a8d83f5 Removed debugging output of exception raised by __reduce__ method. 30 November 2015, 22:39:25 UTC
ca28eba Fixed reference leak when read truncated pickle. 30 November 2015, 22:18:23 UTC
cbbec1c Issue #25718: Fixed copying object with state with boolean value is false. 30 November 2015, 15:20:02 UTC
7279bef Issue #25761: Added more test cases for testing unpickling broken data. Output raised exception at verbose level 2 (-vv). 29 November 2015, 11:12:10 UTC
c472246 Issue #10131: Fixed deep copying of minidom documents. Based on patch by Marian Ganisin. 26 November 2015, 21:49:42 UTC
747d48c Issues #22989, #21228: Document HTTP response object for urlopen() Previous documentation was not clear if the geturl(), info() and getcode() were valid for HTTP responses. The “msg” attribute is different to the usual HTTPResponse.msg attribute. Based on patch by Evens Fortuné. 26 November 2015, 11:01:58 UTC
92072ac Issue #25622: Rename to PythonValuesTestCase and enable for non-Windows 26 November 2015, 02:36:26 UTC
097a664 Issue #19687: Fixed possible integer overflows in ElementTree. Based on patch by Christian Heimes. 25 November 2015, 18:12:37 UTC
d28bb62 Issue #24097: Fixed crash in object.__reduce__() if slot name is freed inside __getattr__. Original patch by Antoine Pitrou. 25 November 2015, 16:33:29 UTC
33e7ea5 Issue #25616: Tests for OrderedDict are extracted from test_collections into separate file test_ordered_dict. 25 November 2015, 15:09:01 UTC
1c855f4 Issue #25697: Fixed rough alphabetical order in Misc/ACKS. 25 November 2015, 14:11:29 UTC
1509580 Issue #24731: Fixed crash on converting objects with special methods __bytes__, __trunc__, and __float__ returning instances of subclasses of bytes, int, and float to subclasses of bytes, int, and float correspondingly. 25 November 2015, 13:47:01 UTC
a49de6b Issue #25725: Fixed a reference leak in pickle.loads() when unpickling invalid data including tuple instructions. 25 November 2015, 13:01:53 UTC
4f44d53 Issue #25508: Clarify documentation on LogRecord args attribute. 24 November 2015, 23:21:15 UTC
cda85a0 Issue #25576: Remove application/x-www-form-urlencoded charset advice No charset parameter is standardized for this Content-Type value. Also clarify that urlencode() outputs ASCII. 24 November 2015, 22:33:18 UTC
ed92910 Issue #25663: Make rlcompleter avoid duplicate global names 23 November 2015, 23:50:26 UTC
bf7b9ed Issue #25706: Fixed markup in the documentation. 23 November 2015, 14:43:05 UTC
e3d4ec4 Issue #25688: Fixed file leak in ElementTree.iterparse() raising an error. 23 November 2015, 13:44:03 UTC
e9b3074 Issue #23914: Fixed SystemError raised by unpickler on broken pickle data. 23 November 2015, 13:17:43 UTC
b6aa537 Issue #25691: Fixed crash on deleting ElementTree.Element attributes. 23 November 2015, 06:42:25 UTC
8bc792a Issue #25624: ZipFile now always writes a ZIP_STORED header for directory entries. Patch by Dingyuan Wang. 22 November 2015, 12:49:58 UTC
04d759b Issue #19687: Fixed memory leak on failed Element slice assignment. Added new tests for Element slice assignments. 22 November 2015, 10:18:38 UTC
828123c Issue #25689: Fix language in ftplib and nntplib docs Original patch by Silent Ghost. 21 November 2015, 22:03:08 UTC
6e92c11 Update idlelib/NEWS.txt. 21 November 2015, 18:31:27 UTC
c75d37f Misc/NEWS entries for IDLE. 21 November 2015, 18:19:03 UTC
b42de2f Issue #25686: test_shutil no longer uses the distutils package for searching and running external archivers. 21 November 2015, 12:09:26 UTC
e1b02e0 Issue 15348: Stop debugger engine (normally in user process) before closing debugger window in IDLE process. 21 November 2015, 05:05:03 UTC
6a904c1 Issue #24455: Prevent IDLE from hanging when a) closing the shell while the debugger is active (15347); b) closing the debugger with the [X] button (15348); and c) activating the debugger when already active (24455). The patch by Mark Roseman does this by making two changes. 1. To suspend and resume the gui.interaction method, use the tcl vwait mechanism interded for this purpose instead of root.mainloop & .quit. 2. In gui.run, allow any existing interaction to terminate first. 21 November 2015, 00:36:43 UTC
0f3c976 asyncio: Fix with github See https://github.com/python/asyncio/pull/295 for details 20 November 2015, 17:57:34 UTC
a211a7a asyncio.tests: Fix whitespace 20 November 2015, 17:43:52 UTC
d59bba8 asyncio: Drop "value" parameter from Task._step method. 20 November 2015, 17:41:03 UTC
b485bb4 asyncio: Sync with github 20 November 2015, 17:39:43 UTC
4379d15 Make it slightly clearer that IDLE close message is referring to user program, not to IDLE itself. 20 November 2015, 17:21:48 UTC
51d3f8b #25679: spelling fix 20 November 2015, 14:57:20 UTC
a82642f Issue #25583: Avoid incorrect errors raised by os.makedirs(exist_ok=True) 19 November 2015, 04:48:44 UTC
41f69f4 Issue #25593: Change semantics of EventLoop.stop(). 19 November 2015, 21:28:47 UTC
01a65af asyncio.docs: Fix versionadded 18 November 2015, 17:44:31 UTC
b3dd6d7 asyncio: Error if awaiting in parallel on the same coroutine This change won't do anything in CPython 3.4 See https://github.com/python/asyncio/pull/293 for details. 18 November 2015, 17:39:45 UTC
38fe4dc Issue #23200: Document that max_length=0 is not supported 18 November 2015, 00:59:17 UTC
f8f66eb Issue #20468: Remove incorrect information about maxrss and page size Extract of patch by Ronald Oussoren. 17 November 2015, 22:13:47 UTC
5d7e3b6 asyncio: Cleanup Future API See https://github.com/python/asyncio/pull/292 for details. 17 November 2015, 17:19:41 UTC
0013cce asyncio: Sync with github 17 November 2015, 17:02:21 UTC
9f3c094 Issue #25615: Document unsorted behaviour of glob; patch by Dave Jones 16 November 2015, 23:46:22 UTC
a4afc48 asyncio: Optimize Task._wakeup See https://github.com/python/asyncio/pull/289 for details. 16 November 2015, 20:12:10 UTC
1744d53 asyncio.docs: Document Transport.is_closing 16 November 2015, 17:46:41 UTC
5bb1afb asyncio: Add Transport.is_closing() See https://github.com/python/asyncio/pull/291 for details. 16 November 2015, 17:43:21 UTC
da32d26 Issue #25498: Fixed contributors name. 16 November 2015, 16:45:23 UTC
4932ac2 Issue #24750: whitespace 16 November 2015, 12:36:22 UTC
d36d817 Issue #24750: Improve appearance of IDLE editor window status bar. Patch by Mark Roseman. 16 November 2015, 12:32:26 UTC
6e0889f Issue #20220: Add DST rules to work around glibc quirk This was triggering intermittent failures in unrelated tests. 16 November 2015, 07:21:38 UTC
back to top