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

sort by:
Revision Author Date Message Commit Date
7bc01c3 Fixed mismatching title overline. 04 December 2016, 13:42:13 UTC
29b0a26 Fixed double hyphens that are rendered to literal en-dashes in the documenation. 04 December 2016, 08:20:55 UTC
de6efdb Ensures intermediate directory is created before accessing it. 03 December 2016, 19:56:20 UTC
190dbd9 Issue #28846: Various installer fixes 03 December 2016, 19:18:53 UTC
2d397dc Merge heads 02 December 2016, 21:34:24 UTC
ee1b01a Issue #21818: Fixed references to classes that have names matching with module names. 02 December 2016, 21:13:53 UTC
1177696 - Import latest config.sub config.guess files 01 December 2016, 20:42:56 UTC
61f0a02 Issue #28790: Fix error when using Generic and __slots__ (Ivan L) 29 November 2016, 17:46:21 UTC
47a9a4b Fixes #24142: [configparser] always join multiline values to not leave the parser in an invalid state 26 November 2016, 22:00:39 UTC
c7b1a0b Issue #28763: Use double hyphens (rendered as en-dashes) in numerical ranges in the documentation. 26 November 2016, 11:43:28 UTC
4931122 Add missing square bracket in typing.get_type_hints() 25 November 2016, 17:10:07 UTC
219a012 Issue #28738: Document SIGBREAK as an acceptable value on Windows Patch by Wojtek Ruszczewski. 25 November 2016, 16:46:57 UTC
a860286 Issue #28773: Add typing.FrozenSet docs. (Manuel Krebber) 24 November 2016, 19:56:00 UTC
f0888cd Issue #28783: Embedded and nuget packages incorrect reference missing bdist_wininst command. 23 November 2016, 18:23:47 UTC
dab0584 Issue #28652: Partially rollback previous changes Allow AF_UNIX in create_server & create_connection 21 November 2016, 22:47:27 UTC
6c7fb55 Issue #28688: Remove warnings.filters check from regrtest Reloading the warnings module duplicates filters in warnings.filters. Fixing the issue is tricky. It was decided to simply remove the check from Python 3.5, since the bug only impacts Python unit tests, not real applications. The check is kept in Python 3.6 and newer. 21 November 2016, 15:44:01 UTC
6a4d762 Fix indentation 21 November 2016, 13:36:36 UTC
06a8dea Fixed the documentation of the structure PyMethodDef. The fields ml_name and ml_doc are of type "const char *" rather of "char *". 21 November 2016, 09:37:18 UTC
aa5a13f replace --with-optimizations references with --enable-optimizations in docs. 21 November 2016, 08:11:47 UTC
357ed2e Change double hyphens (en dashes) to em (longer) dashes 21 November 2016, 00:15:20 UTC
b24569a Issue #28556: upstream improvements to docstrings and error messages by Ivan Levkivskyi (#331) 21 November 2016, 02:01:29 UTC
6e723d2 Issue #25659: Change assert to TypeError in from_buffer/_copy() Based on suggestion by Eryk Sun. 20 November 2016, 07:58:35 UTC
395733d Issue #10656: Fix out-of-tree building on AIX The ld_so_aix script and python.exp file are created in the build directory. Patch by Tristan Carel and Michael Haubenwallner. 20 November 2016, 07:56:37 UTC
1016b2f Rename the new --with-optimiations flag to --enable-optimizations. 20 November 2016, 21:07:42 UTC
bbfe6c3 Issue #28666: Fix removing readonly directories on Windows. 20 November 2016, 18:04:54 UTC
2ccb988 Issue #28666: Now test.support.rmtree is able to remove unwritable or unreadable directories on Windows too. 20 November 2016, 15:42:32 UTC
cf36835 Issue #28750: Fixed docs of of unicode-escape an raw-unicode-escape C API. Patch by Xiang Zhang. 20 November 2016, 15:20:19 UTC
6770f8a Issue #28666: Now test.support.rmtree is able to remove unwritable or unreadable directories. 20 November 2016, 14:16:06 UTC
f675a37 Issue #19569: Suggested more appropriate replacements for deprecated Unicode C API functions. 20 November 2016, 10:13:44 UTC
144f77a Issue #28715: Added error checks for PyUnicode_AsUTF8(). 20 November 2016, 06:47:21 UTC
93ff872 Issue #28732: Raise ValueError when argv[0] is empty. 20 November 2016, 03:03:54 UTC
11f4326 Issue #28732: Fix crash in os.spawnv() with no elements in args Prevents crashes in some other posixmodule.c functions 20 November 2016, 02:33:39 UTC
ca4b252 Issue #28556: two more small upstream changes by Ivan Levkivskyi (#329, #330) 19 November 2016, 18:32:41 UTC
c851817 Fixes incorrect path in nuget package build. 17 November 2016, 00:32:22 UTC
292dd1b Fixed an off-by-one error in _PyUnicode_EqualToASCIIString (issue #28701). 16 November 2016, 14:12:34 UTC
f5894dd Issue #28701: Replace _PyUnicode_CompareWithId with _PyUnicode_EqualToASCIIId. The latter function is more readable, faster and doesn't raise exceptions. Based on patch by Xiang Zhang. 16 November 2016, 13:40:39 UTC
f4934ea Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualToASCIIString. The latter function is more readable, faster and doesn't raise exceptions. 16 November 2016, 08:17:58 UTC
5ebff7b Merge - upgrade pip/setuptools 16 November 2016, 02:18:20 UTC
dd5c73b Upgrade pip to 9.0.1 and setuptools to 28.8.0 16 November 2016, 02:17:43 UTC
d7c1518 Issue #28704: Fix create_unix_server to support Path-like objects 15 November 2016, 20:26:34 UTC
0ed20cd Issue #28703: Fix asyncio.iscoroutinefunction to handle Mock objects. 15 November 2016, 20:20:34 UTC
2f84144 Issue #28556: Allow keyword syntax for NamedTuple (Ivan Levkivskyi) (upstream #321) 15 November 2016, 17:48:06 UTC
49e8f2d Issue 28668: Skip tests where instanciation of multiprocessing.Queue would raise ImportError 15 November 2016, 15:57:52 UTC
5ae6c77 Issue #28563: Make plural form selection more lenient and accepting non-integer numbers. Django tests depend on this. 14 November 2016, 17:29:59 UTC
5ca92ab Issue #28563: Make plural form selection more lenient and accepting non-integer numbers. Django tests depend on this. 14 November 2016, 17:25:56 UTC
60ac989 Issue #28563: Make plural form selection more lenient and accepting non-integer numbers. Django tests depend on this. 14 November 2016, 17:22:12 UTC
c9e08d8 Issue #28000: Fix gethostbyname_r() usage on AIX with _LINUX_SOURCE_COMPAT Patch by Matthieu S. 14 November 2016, 04:26:36 UTC
9544a36 Issue #28016: Skip /dev/tty seekable() test on AIX 14 November 2016, 01:58:57 UTC
efbf20f Issue #28678: Fix references to numeric_owner parameter 13 November 2016, 23:25:06 UTC
547c1b9 Fix temporary file not deleted in test_socket 13 November 2016, 18:39:48 UTC
7ae4112 Issue #28676: Prevent missing 'getentropy' declaration warning on macOS. Patch by Gareth Rees. 12 November 2016, 21:35:48 UTC
022371f Fixed the documentation of parse_constant argument in json.load(). parse_constant doesn't get called on 'null', 'true', 'false' since 3.1/2.7. 12 November 2016, 20:47:16 UTC
6b4b6e9 Issue #28648: Fixed crash in Py_DecodeLocale() in debug build on Mac OS X when decode astral characters. 12 November 2016, 12:35:46 UTC
84293af Issue #28648: Fixed crash in Py_DecodeLocale() in debug build on Mac OS X when decode astral characters. 12 November 2016, 12:29:48 UTC
b626643 Issue #28648: Fixed crash in Py_DecodeLocale() in debug build on Mac OS X when decode astral characters. 12 November 2016, 12:28:06 UTC
ae08687 Issue 28644: Document recent changes in typing.py (Ivan L) 11 November 2016, 23:54:04 UTC
5adc22b Issue #28664: test_bz2 now works on non-Windows platforms without bunzip2 (e.g. on Android). 11 November 2016, 15:10:24 UTC
62e32d6 Issue #19398: Extra slash no longer added to sys.path components in case of empty compile-time PYTHONPATH components. This fixes some tests in -S or -I modes. 11 November 2016, 10:05:01 UTC
daeddc4 Issue #23839: Various caches now are cleared before running every test file. 11 November 2016, 09:42:47 UTC
dad1790 Issue #28649: fix second issue with _ForwardRef (#328) 10 November 2016, 16:29:18 UTC
c7b9295 Issue #28649: fix first issue with _ForwardRef (#327) 10 November 2016, 16:24:06 UTC
46a02db Issue #28653: Fix a refleak in functools.lru_cache. 09 November 2016, 23:55:45 UTC
28f42fd Issue #28649: Clear the typing module caches when search for reference leaks. 09 November 2016, 21:49:02 UTC
9b10756 Issue #28649: typing-clear-caches.patch 09 November 2016, 21:23:04 UTC
f9099de Issue #28649: fix-typing-test-v2.diff 09 November 2016, 21:18:59 UTC
991d14f Issue #28556: More typing.py updates from upstream. 09 November 2016, 21:12:51 UTC
a1a8b7d Issue #28652: Make loop methods reject socket kinds they do not support. 09 November 2016, 20:47:00 UTC
d2fd359 ssue #27942: Fix memory leak in codeobject.c 09 November 2016, 14:42:14 UTC
58c534d Use http instead of https, due to certificate error 09 November 2016, 03:33:31 UTC
d58fc8b Update URL for requests documentation after IRC request 09 November 2016, 03:07:43 UTC
c0215df Issue #28639: Fix inspect.isawaitable to always return bool Patch by Justin Mayfield. 09 November 2016, 00:57:44 UTC
33499b7 genobject: Remove unnecessary tp_free slots from aiter_wrapper and coro_wrapper 09 November 2016, 00:19:28 UTC
6cc495e asyncio: Fix _format_coroutine for coroutine-like objects w/o __name__ Some built-in coroutine-like objects might not have __name__ or __qualname__. A good example of such are 'asend', 'aclose' and 'athrow' coroutine methods of asynchronous generators. 09 November 2016, 00:16:01 UTC
70b72f0 Fixed possible abort in ceval loop if _PyUnicode_FromId() fails. Every opcode should end with DISPATCH() or goto error. 08 November 2016, 21:12:46 UTC
eb20fca Issue #28563: Fixed possible DoS and arbitrary code execution when handle plural form selections in the gettext module. The expression parser now supports exact syntax supported by GNU gettext. 08 November 2016, 19:26:14 UTC
1c3fdd9 Issue #28563: Fixed possible DoS and arbitrary code execution when handle plural form selections in the gettext module. The expression parser now supports exact syntax supported by GNU gettext. 08 November 2016, 19:20:09 UTC
07bcf05 Issue #28563: Fixed possible DoS and arbitrary code execution when handle plural form selections in the gettext module. The expression parser now supports exact syntax supported by GNU gettext. 08 November 2016, 19:17:46 UTC
579f038 Issue #28585: Restored docstring of os._isdir(). 08 November 2016, 18:21:22 UTC
6ea2b8f Issue #28613: Expose asyncio._get_running_loop() and _set_running_loop() 08 November 2016, 00:00:46 UTC
49d6b8c Issue #28634: Fix asyncio.isfuture() to support mocks 07 November 2016, 21:00:50 UTC
3b3a141 Issue #27392: Document loop.connect_accepted_socket() Patch by Jim Fulton. 07 November 2016, 20:35:25 UTC
2ebd6fe Issue #28088: Don't include self in method signature Also update versionadded directive to 3.5.3. 07 November 2016, 20:36:14 UTC
db87c99 make sure dict view types are initialized 06 November 2016, 21:01:07 UTC
cea632e Issue #21864: Remove outdated section about exceptions from the tutorial Move the still relevant parts of it to the previous chapter, "Errors and Exceptions". 06 November 2016, 18:15:01 UTC
24411f8 Issue #23996: Added _PyGen_SetStopIterationValue for safe raising StopIteration with value. More safely handle non-normalized exceptions in -_PyGen_FetchStopIterationValue. 06 November 2016, 16:44:42 UTC
04b3d8b Fix spacing after C++ in documentation 05 November 2016, 02:40:31 UTC
88281ce Issue #28485: Check for negative workers even without ProcessPoolExecutor This matches the documentation, and passes the test suite when multithreading is disabled. 05 November 2016, 01:11:36 UTC
da4887a Issue #28616: Correct help for sys.version_info releaselevel component. Patch by Anish Tambe. 04 November 2016, 21:03:34 UTC
600a349 Issue #28613: Fix get_event_loop() to return the current loop when called from coroutines or callbacks. 04 November 2016, 18:29:28 UTC
1ea023e Issue #28088: Document Transport.set_protocol and get_protocol 04 November 2016, 07:33:47 UTC
c542049 asyncio: Sync with upstream 03 November 2016, 22:35:23 UTC
491a912 Issue #28600: Optimize loop.call_soon(). Run expensive type checks only in debug mode. In addition, stop supporting passing handles to loop.run_in_executor. 03 November 2016, 22:09:24 UTC
9e80eeb Issue #26980: Improve docs for create_unix_connection(). By Mariatta. 03 November 2016, 21:17:25 UTC
a7c972e Issue #28387: Fixed possible crash in _io.TextIOWrapper deallocator when the garbage collector is invoked in other thread. Based on patch by Sebastian Cufre. 03 November 2016, 13:37:01 UTC
2af4144 Merge new pip/setuptools from 3.4 02 November 2016, 19:53:58 UTC
20a587b Upgrade pip to 9.0 and setuptools to 28.7.1 02 November 2016, 19:42:49 UTC
72b3443 Fixed hyperlinks for tarfile CLI options. 02 November 2016, 19:04:45 UTC
92c1a90 Issue #28513: Documented command-line interface of zipfile. 02 November 2016, 10:06:15 UTC
38adbfa Issue #28248: Update macOS installer build to use OpenSSL 1.0.2j. Original patch by Mariatta Wijaya. 31 October 2016, 23:51:58 UTC
3e3e9f3 Issue #28553: Fix logic error in example code of int.to_bytes doc. 31 October 2016, 08:41:47 UTC
back to top