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

sort by:
Revision Author Date Message Commit Date
aa46bd4 Issue #27601: Improve example in the "Hashing of numeric types" section * Fix return value of hash_compute() implementation * Rename variable names to hash_value to improve readability Patch by Emanuel Barry. 25 July 2016, 01:55:51 UTC
6ed63f3 Fixes default intermediate directory when building on Windows. 25 July 2016, 01:03:22 UTC
df450d1 Issue #27469: Adds a shell extension to the launcher so that drag and drop works correctly. 16 July 2016, 23:17:33 UTC
5f804e3 Issue #13849: Fix test_null_bytes under Windows 23 July 2016, 05:42:41 UTC
9adc1a3 Issue #13849: Add tests for null byte checking in test_genericpath 23 July 2016, 04:31:47 UTC
1fd497e Issue #27591: Set sigint_event to NULL if _PyOS_IsMainThread() returns false Patch by Chris Angelico. 23 July 2016, 04:13:14 UTC
84544c1 Issue #27130: Fix handling of buffers exceeding UINT_MAX in “zlib” module Patch by Xiang Zhang. 23 July 2016, 03:02:07 UTC
524714e socket: use INVALID_SOCKET * Replace "fd = -1" with "fd = INVALID_SOCKET" * Replace "fd < 0" with "fd == INVALID_SOCKET": SOCKET_T is unsigned on Windows Bug found by Pavel Belikov ("Fragment N1"): http://www.viva64.com/en/b/0414/#ID0ECDAE 22 July 2016, 15:43:59 UTC
0cec877 socket: Fix internal_select() Bug found by Pavel Belikov ("Fragment N1"): http://www.viva64.com/en/b/0414/#ID0ECDAE 22 July 2016, 15:26:53 UTC
48e3f98 Issue #25393: Fix probable copy/paste error in resource docs Patch by Alakshendra Yadav. 19 July 2016, 21:41:20 UTC
2219450 Issue #27528: Document and test warning messages must match at beginning 19 July 2016, 02:26:38 UTC
95f53c1 Issue #16191: Fix up references to renamed variables 18 July 2016, 08:23:26 UTC
371731e Issue #27507: Check for integer overflow in bytearray.extend() Patch by Xiang Zhang. 18 July 2016, 07:53:13 UTC
5852fa3 Removes unused files from PC folder. 18 July 2016, 04:58:01 UTC
25f9cf4 Issue #27309: Enables proper Windows styles in python[w].exe manifest. 18 July 2016, 04:39:13 UTC
b22a677 Issue #27533: Release GIL in nt._isdir 18 July 2016, 03:49:38 UTC
bc3e9ca Closes #27545: Remove pyshellext.vcxproj from pcbuild.proj 18 July 2016, 03:45:29 UTC
ebf9fd3 Issue #27531: Update signature of Mock.assert_not_called method Since 01ae1ac2daf4, it doesn't accept any arguments. Patch by Michael Killough. 17 July 2016, 12:26:46 UTC
8c126f1 Issue #26974: Fix segfault in the presence of absurd subclassing. Proactively eliminate all internal uses of overridden methods. 17 July 2016, 12:01:42 UTC
80ab069 Issue #27419: Added temporary workaround for subinterpreters. 17 July 2016, 11:15:28 UTC
6c2f1fd Issues #23147, #23148: Presumably fixed bugs in folding UnstructuredTokenList. 17 July 2016, 10:25:15 UTC
b3b65e6 Issue #27419: Standard __import__() no longer look up "__import__" in globals or builtins for importing submodules or "from import". Fixed handling an error of non-string package name. 17 July 2016, 09:47:17 UTC
dec25af Issue #17711: Fixed unpickling by the persistent ID with protocol 0. Original patch by Alexandre Vassalotti. 17 July 2016, 08:24:17 UTC
6fd76bc Fixes use of Py_IntDir and Py_OutDir to control build directories. 16 July 2016, 23:13:19 UTC
ff1d5ab Issue #25507: IDLE no longer runs buggy code because of its tkinter imports. Users must include the same imports required to run directly in Python. 16 July 2016, 22:26:32 UTC
7ca63cb Fix regressions introduced by fixes for issue #27083. 16 July 2016, 17:44:13 UTC
702b046 #27522: break unintended cycle in feedparser. Patch by Costas. 16 July 2016, 01:29:13 UTC
9305bba Issue #26696: Document collections.abc.ByteString. Thanks to Xiang Zhang for the patch. 15 July 2016, 19:16:18 UTC
b7567c5 Fix building tcl/tk with only the VC build tools installed. 15 July 2016, 18:55:52 UTC
a47a7a5 Issue #27083: Respect the PYTHONCASEOK environment variable under Windows. Originally only b'PYTHONCASEOK' was being checked for in os.environ, but that won't work under Windows where all environment variables are strings (on OS X they are bytes). Thanks to Eryk Sun for the bug report. 15 July 2016, 18:54:38 UTC
f76457e Issue #26844: Fix imp.find_module() to have the exception related to type issues be about 'path' instead of 'name'. Thanks to Lev Maximov for the patch. 15 July 2016, 17:58:54 UTC
5d9c7ed Issue #27518: Fix typo in Grammar/Grammar Patch by Stéphane Wirtel. 15 July 2016, 13:12:39 UTC
e09ed54 make too many nested blocks be a SyntaxError instead of a SystemError (closes #27514) Patch by Ammar Askar. 15 July 2016, 05:00:03 UTC
2b87921 Issue #27180: Clarify Path.rename() behavior on Unix systems Patch by Evelyn Mitchell. 14 July 2016, 04:44:59 UTC
3093bf1 Issue #27455: Improve examples in tkinter documentation Patch by John Hagen. 14 July 2016, 04:32:43 UTC
c29df65 Issue #27369: Merge test_pyexpat from 3.4 into 3.5 14 July 2016, 03:35:15 UTC
945863a Fixes build order and lingering intermediate files. 14 July 2016, 02:58:21 UTC
b7b5d35 Issue #27369: Merge test_pyexpat from 3.3 into 3.4 14 July 2016, 02:09:17 UTC
d27a7c1 Issue #27369: Merge test_pyexpat from 3.2 into 3.3 14 July 2016, 01:42:53 UTC
076ca6c Issue #27369: Don’t test error message detail that changed in Expat 2.2.0 14 July 2016, 01:31:46 UTC
2cdcaf1 Issue #22758: Move NEWS entry to Library section 14 July 2016, 01:17:03 UTC
252e9ed Issue #27392: Add loop.connect_accepted_socket(). Patch by Jim Fulton. 12 July 2016, 22:23:10 UTC
6f379f4 Issue #27481: Docummented that ValueError is now raised instead of TypeError in case of embedded null characters/bytes. Patch by Xiang Zhang. 12 July 2016, 06:14:15 UTC
204bf0b English spelling and grammar fixes 11 July 2016, 07:51:37 UTC
0ca0ede Restore NEWS entries lost in revision 8145f25f26aa 11 July 2016, 12:43:38 UTC
bed7f1a Issue #23804: Fix SSL zero-length recv() calls to not block and raise EOF 11 July 2016, 00:17:13 UTC
c95300a Merge heads 10 July 2016, 18:34:05 UTC
2a8c7ca #22758 null merge 10 July 2016, 18:11:36 UTC
8cf1496 #22758 null merge 10 July 2016, 18:10:56 UTC
e363894 #22758 null merge 10 July 2016, 18:10:08 UTC
7a139c5 #26176: fix usage of Address constructor in email examples. Patch by Nathan Harold. 10 July 2016, 17:59:01 UTC
06cfb0c Issue #27473: Fixed possible integer overflow in bytes and bytearray concatenations. Patch by Xiang Zhang. 10 July 2016, 17:48:43 UTC
5f21f43 #22758: fix regression in handling of secure cookies. This backports the fix from #16611, per discussion with the release manager. 10 July 2016, 17:32:43 UTC
537ad7a #20647: Update dictobject.c comments to account for randomized string hashes. Patch by Jaysinh Shukla. 10 July 2016, 16:33:18 UTC
d5b47fb Issue #27466: Change time format returned by http.cookie.time2netscape, confirming the netscape cookie format. 10 July 2016, 13:45:38 UTC
1a2b24f Issue #27332: Fixed the type of the first argument of module-level functions generated by Argument Clinic. Patch by Petr Viktorin. 07 July 2016, 14:35:15 UTC
b8a2f51 assume egd unless OPENSSL_NO_EGD is defined—remove configure check (closes #24557) 07 July 2016, 06:55:15 UTC
27007dc fix refleaks in PyDict_SetItem error cases (closes #27248) 07 July 2016, 06:26:32 UTC
a1fc45a Fix a test with the new upload URL 06 July 2016, 21:46:37 UTC
1af8b63 merge 3.4 06 July 2016, 21:04:29 UTC
ede9a0f merge 3.3 06 July 2016, 21:04:11 UTC
9409b4a merge 3.4 06 July 2016, 21:00:38 UTC
ad04a85 Switch to the new upload url for PyPI 06 July 2016, 20:18:39 UTC
188c118 Switch to the new upload url for PyPI 06 July 2016, 19:27:35 UTC
2279aeb Issue #27452: add line counter and crc to IDLE configHandler test dump. 06 July 2016, 00:09:53 UTC
e75ffa9 Add versionadded to PyDict_SetDefault documentation It was added for Python 3.4 in a0b750ea3397. 05 July 2016, 14:08:29 UTC
a793037 Issue #19527: Fixed tests with defined COUNT_ALLOCS. 03 July 2016, 19:27:26 UTC
af65872 Issue #27443: __length_hint__() of bytearray itearator no longer return negative integer for resized bytearray. 03 July 2016, 11:41:36 UTC
8faca61 Issue #27431: Update default protocol version in shelve.Shelf() documentation shelve.open() documentation was updated in f351fb7ea179. 01 July 2016, 09:33:00 UTC
e39682b Issue #27430: Fix typos, patch by scop. 01 July 2016, 09:17:05 UTC
660c8fc Issue #26665: Remove mis-use of ``$`` in activate.fish. This is a revertion of cfc66e37eb8e. Thanks to 鄭景文 for the bug report. Thanks to Tin Tvrtković, Xiang Zhang, and Dan McCombs for diagnosing the issue. 30 June 2016, 18:41:55 UTC
15287f8 Issue #4945: Improved the documenting of boolean arguments in the json module. Based on patch by Gabriel Genellina. 30 June 2016, 10:59:12 UTC
0ab67df Issue #27416: clarify copy doc Patch written by R. David Murray. 30 June 2016, 09:50:23 UTC
eb51faa Issue #27418: Fixed Tools/importbench/importbench.py. 30 June 2016, 07:33:17 UTC
4575098 Fix issue #27402: example for typing did not type-check. 28 June 2016, 17:08:17 UTC
63bf487 asyncio: Use socket specs for getaddrinfo() in sock_connect() Patch by Martin Richard. GH PR #365. 28 June 2016, 15:00:22 UTC
77bc04a asyncio: Fix NameError in sslproto _fatal_error() Patch by Richard Walker. 28 June 2016, 14:55:36 UTC
2e4cdb6 Adds script for purging the caching server for downloads on python.org. 27 June 2016, 19:30:48 UTC
aaa1767 Adds batch file to build nuget packages. 27 June 2016, 16:43:17 UTC
33128c8 Include libs folder in nuget package and allow preinstalling packages 27 June 2016, 16:34:18 UTC
6803f35 Issue #27393: Fix escaping of C:\ too 27 June 2016, 10:10:47 UTC
9c1e9d4 Issue #27393: Fix escaping of venv activate commands on Windows Patch by Manuel Kaufmann. 27 June 2016, 06:51:40 UTC
bddc356 Null merge from 3.4 (well, except, pull in the tag for 3.4.5.) 27 June 2016, 02:57:48 UTC
1b329e7 Merge. 27 June 2016, 02:53:18 UTC
9bb2005 Post-release fixups for Python 3.5.2. 27 June 2016, 02:47:22 UTC
9105870 Merge. 27 June 2016, 02:43:00 UTC
ea68492 Post-release fixups for Python 3.4.5. 27 June 2016, 02:41:21 UTC
1e957d1 Update NEWS and idlelib NEWS.text. 26 June 2016, 22:20:20 UTC
745a407 Issue #22115: Fixed tracing Tkinter variables: * tracing in the "u" mode now works * trace_vdelete() with wrong mode no longer break tracing * trace_vinfo() now always returns a list of pairs of strings 26 June 2016, 14:42:23 UTC
e7614dd Simplifies nuget build with better parameters. 25 June 2016, 23:13:30 UTC
8e36221 Added tag v3.4.5 for changeset 619b61e505d0 25 June 2016, 21:44:49 UTC
98be9d5 Version bump for 3.4.5 final. 25 June 2016, 21:44:30 UTC
27d3529 Regenerate pydoc topics for 3.4.5 final. 25 June 2016, 21:42:04 UTC
da27a88 Added tag v3.5.2 for changeset 4def2a2901a5 25 June 2016, 21:11:29 UTC
6c1aa6b Version number bump for 3.5.2 final. 25 June 2016, 21:11:09 UTC
66b84c0 Update pydoc topics for 3.5.2 final. 25 June 2016, 21:09:37 UTC
e92dc9c Fix a scoping issue where an UnboundLocalError was triggered if a lazy-loaded module was already in sys.modules. 25 June 2016, 17:47:53 UTC
559ad5d Remove a stale reference to pathlib.PurePath.path 24 June 2016, 19:22:14 UTC
3f9fbfc Preinstalls pip into the nuget package so that pip.exe is available after installation. 24 June 2016, 18:37:50 UTC
33f7310 Adds scripts for producing Nuget packages. 24 June 2016, 17:32:15 UTC
back to top