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

sort by:
Revision Author Date Message Commit Date
3c35fdb Issue #27172: Undeprecate inspect.getfullargspec() This is still useful for single source Python 2/3 code migrating away from inspect.getargspec(), but that wasn't clear with the documented deprecation in place. 02 December 2016, 10:29:57 UTC
c2c8fe1 Issue #28843: Fix asyncio C Task to handle exceptions __traceback__. 01 December 2016, 16:36:22 UTC
c349374 Issue #28790: Fix error when using Generic and __slots__ (Ivan L) (3.5->3.6) 29 November 2016, 17:46:26 UTC
61f0a02 Issue #28790: Fix error when using Generic and __slots__ (Ivan L) 29 November 2016, 17:46:21 UTC
11dd604 Add TCP_CONGESTION and TCP_USER_TIMEOUT Issue #26273: Add new socket.TCP_CONGESTION (Linux 2.6.13) and socket.TCP_USER_TIMEOUT (Linux 2.6.37) constants. Patch written by Omar Sandoval. 29 November 2016, 15:55:04 UTC
9ec0772 Issue #28797: Modifying the class __dict__ inside the __set_name__ method of a descriptor that is used inside that class no longer prevents calling the __set_name__ method of other descriptors. 29 November 2016, 07:54:17 UTC
27ec5bf Issue #28635: Document Python 3.6 opcode changes Thanks to Serhiy Storchaka for pointing out the missing notes. Patch by Elvis Pranskevichus. 28 November 2016, 16:45:36 UTC
0425fc0 Fix grammar in whatsnew 28 November 2016, 06:19:07 UTC
8fb4e42 Merge 3.5, fix for #24142 26 November 2016, 22:02:48 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
0264e46 Issue #28763: Use double hyphens (rendered as en-dashes) in numerical ranges in the documentation. 26 November 2016, 11:49:59 UTC
c7b1a0b Issue #28763: Use double hyphens (rendered as en-dashes) in numerical ranges in the documentation. 26 November 2016, 11:43:28 UTC
861b685 Merge from 3.5 25 November 2016, 17:10:30 UTC
4931122 Add missing square bracket in typing.get_type_hints() 25 November 2016, 17:10:07 UTC
d5c6b47 Issue #28738: Merge from 3.6 25 November 2016, 16:47:43 UTC
219a012 Issue #28738: Document SIGBREAK as an acceptable value on Windows Patch by Wojtek Ruszczewski. 25 November 2016, 16:46:57 UTC
61d9c86 Issue #28793: Fix c/p error in AsyncGenerator documentation Patch by Julien Palard. 25 November 2016, 14:31:27 UTC
f7d199f Fix _PyGen_yf() Issue #28782: Fix a bug in the implementation ``yield from`` when checking if the next instruction is YIELD_FROM. Regression introduced by WORDCODE (issue #26647). Reviewed by Serhiy Storchaka and Yury Selivanov. 24 November 2016, 21:33:01 UTC
b3c5dc9 Issue #28773: Add typing.FrozenSet docs. (Manuel Krebber) (3.5->3.6) 24 November 2016, 19:56:40 UTC
a860286 Issue #28773: Add typing.FrozenSet docs. (Manuel Krebber) 24 November 2016, 19:56:00 UTC
7e45b5c Issue #27100: Silence deprecation warning in Lib/test/test_with.py 24 November 2016, 18:50:34 UTC
f576343 Issue #28532: Add what's new entry for python -VV option 24 November 2016, 08:20:40 UTC
2a94301 Issue #28783: Embedded and nuget packages incorrect reference missing bdist_wininst command. 23 November 2016, 19:42:35 UTC
f0888cd Issue #28783: Embedded and nuget packages incorrect reference missing bdist_wininst command. 23 November 2016, 18:23:47 UTC
64e2f9a Issue #27100: Fix ref leak 22 November 2016, 19:50:40 UTC
02a4018 Issue #28573: Missing sys._mercurial info and other build issues. 22 November 2016, 19:48:52 UTC
bcf4dcc Issue #28727: Optimize pattern_richcompare() for a==a A pattern is equal to itself. 22 November 2016, 14:30:38 UTC
e670b2d Issue #28727: Fix typo in pattern_richcompare() Typo catched by Serhiy Storchaka, thanks! 22 November 2016, 14:23:00 UTC
3a5d79f Issue #28023: Fix python-gdb.py on old GDB versions Replace int(value.address)+offset with value.cast(unsigned char*)+offset. It seems like int(value.address) fails on old versions of GDB. 22 November 2016, 12:09:39 UTC
d7d2bc8 Issue #28023: Fix python-gdb.py didn't support new dict implementation 22 November 2016, 10:40:58 UTC
f50a85d Start 3.6.0rc1. (Note, patch level was incorrectly set to 3.6.0b4+ following b3. It is now b4+ again.) 22 November 2016, 06:21:04 UTC
6f4f2e4 Added tag v3.6.0b4 for changeset 18496abdb3d5 22 November 2016, 04:31:39 UTC
38c508a Version bump for 3.6.0b4 22 November 2016, 04:30:55 UTC
19df707 Update pydoc topics for 3.6.0b4 22 November 2016, 04:24:38 UTC
a3fec15 Issue #27100: With statement reports missing __enter__ before __exit__. (Contributed by Jonathan Ellington.) 22 November 2016, 01:24:23 UTC
4e17e04 Issue #26163: Disable periodically failing test which was overly demanding of the frozenset hash function effectiveness 22 November 2016, 00:59:04 UTC
6b3481c Issue #5830: Add test for ee476248a74a. (Contributed by Serhiy Storchaka.) 22 November 2016, 00:48:10 UTC
6da9078 Issue #27825: Improve for statistics data arguments. (Contributed by Mariatta Wijaya.) 22 November 2016, 00:31:02 UTC
8c5e190 Issue #28587: Improve list examples in the tutorial 22 November 2016, 00:29:50 UTC
6023d33 Issue #28743: Reduce memory consumption for random module tests 21 November 2016, 23:32:08 UTC
7f94619 Fix grammar 21 November 2016, 23:13:18 UTC
5bd5b9d Issue 28587: list.index documentation missing start and stop arguments. (Contributed by Mariatta Wijaya.) 21 November 2016, 23:12:54 UTC
5cb0c09 Merge 3.5 (issue #28652) 21 November 2016, 22:47:41 UTC
dab0584 Issue #28652: Partially rollback previous changes Allow AF_UNIX in create_server & create_connection 21 November 2016, 22:47:27 UTC
bf87126 Issue 28475: Improve error message for random.sample() with k < 0. (Contributed by Francisco Couzo). 21 November 2016, 22:34:33 UTC
546ce65 Issue #28752: Restored the __reduce__() methods of datetime objects. 21 November 2016, 22:29:42 UTC
f89854f Issue 28751: Fix comments in code.h. (Contributed by Ned Batchelder). 21 November 2016, 22:24:32 UTC
1149d93 Add analysis section to motivate the single server queue example 21 November 2016, 22:13:07 UTC
e132910 Misc readability and organization improvements for the random docs 21 November 2016, 20:33:50 UTC
0537405 Add a seealso section for further reference and skill building 21 November 2016, 18:52:04 UTC
8ab1258 Simplify code in an example 21 November 2016, 18:16:01 UTC
23bb6f4 close issue28172: Change all example enum member names to uppercase, per Guido; patch by Chris Angelico. 21 November 2016, 17:22:05 UTC
64a6861 issue28082: actually include NEWS entry 21 November 2016, 16:39:32 UTC
c88c80b closes issue28082: doc update and NEWS entry 21 November 2016, 16:29:31 UTC
00eacac closes issue23591: add NEWS entry 21 November 2016, 16:28:56 UTC
f9646ca Issue #28688: Null merge 3.5 The Python 3.5 change must not be applied to Python 3.6. 21 November 2016, 15:45:19 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
b44fb12 Implement rich comparison for _sre.SRE_Pattern Issue #28727: Regular expression patterns, _sre.SRE_Pattern objects created by re.compile(), become comparable (only x==y and x!=y operators). This change should fix the issue #18383: don't duplicate warning filters when the warnings module is reloaded (thing usually only done in unit tests). 21 November 2016, 15:35:08 UTC
a2f7ee8 Fix up grammar, markup, etc in 3.6 What’s New 21 November 2016, 13:38:59 UTC
8a6333d Merge doc fixup from 3.5 21 November 2016, 13:40:40 UTC
6a4d762 Fix indentation 21 November 2016, 13:36:36 UTC
0e175a6 Issue #28532: Show sys.version when -V option is supplied twice 21 November 2016, 11:57:14 UTC
6befb64 Extend and improve the examples for the random module 21 November 2016, 09:59:39 UTC
ac0720e Issue #28760: Clean up and fix comments in PyUnicode_AsUnicodeEscapeString(). Patch by Xiang Zhang. 21 November 2016, 09:46:51 UTC
bb8fd5b 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:38:14 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
2863c38 replace --with-optimizations references with --enable-optimizations in docs. 21 November 2016, 08:12:40 UTC
aa5a13f replace --with-optimizations references with --enable-optimizations in docs. 21 November 2016, 08:11:47 UTC
2854018 Another en → em dash fix for 3.6 21 November 2016, 04:10:45 UTC
99b6f28 Merge doc fixups from 3.5 21 November 2016, 04:22:22 UTC
ceccc85 Issue #28556: upstream improvements to docstrings and error messages by Ivan Levkivskyi (#331) (3.5->3.6) 21 November 2016, 02:01:33 UTC
b24569a Issue #28556: upstream improvements to docstrings and error messages by Ivan Levkivskyi (#331) 21 November 2016, 02:01:29 UTC
f0e98c5 Issue #20572: The subprocess.Popen.wait method's undocumented endtime parameter now raises a DeprecationWarning. It was deprecated in 3.4. It was never documented prior to that. 21 November 2016, 00:25:14 UTC
357ed2e Change double hyphens (en dashes) to em (longer) dashes 21 November 2016, 00:15:20 UTC
cf01441 Fix typos in documentation 20 November 2016, 08:37:21 UTC
04b3575 Issue #25659: Merge ctypes fix from 3.5 20 November 2016, 22:07:29 UTC
e45df0a Issue #10656: Merge AIX build fix from 3.5 20 November 2016, 22:06:44 UTC
57ea576 move the enable-optimizations mention to the correct Build section. 20 November 2016, 21:16:41 UTC
164eea5 Rename the new --with-optimiations flag to --enable-optimizations. 20 November 2016, 21:13:16 UTC
1016b2f Rename the new --with-optimiations flag to --enable-optimizations. 20 November 2016, 21:07:42 UTC
9f64de8 Issue #28666: Fix removing readonly directories on Windows. 20 November 2016, 18:36:51 UTC
bbfe6c3 Issue #28666: Fix removing readonly directories on Windows. 20 November 2016, 18:04:54 UTC
ba7eb8d Issue #28666: Now test.support.rmtree is able to remove unwritable or unreadable directories on Windows too. 20 November 2016, 15:42:58 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
01452af Issue #28750: Fixed docs of of unicode-escape an raw-unicode-escape C API. Patch by Xiang Zhang. 20 November 2016, 15:21:04 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
0e7dbe9 Issue #28666: Now test.support.rmtree is able to remove unwritable or unreadable directories. 20 November 2016, 14:19:20 UTC
6770f8a Issue #28666: Now test.support.rmtree is able to remove unwritable or unreadable directories. 20 November 2016, 14:16:06 UTC
92b9a1f Issue #19569: Suggested more appropriate replacements for deprecated Unicode C API functions. 20 November 2016, 10:14:08 UTC
f675a37 Issue #19569: Suggested more appropriate replacements for deprecated Unicode C API functions. 20 November 2016, 10:13:44 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
0651583 Replaced outdated macros _PyUnicode_AsString and _PyUnicode_AsStringAndSize with PyUnicode_AsUTF8 and PyUnicode_AsUTF8AndSize. 20 November 2016, 07:13:07 UTC
e209739 Issue #28715: Added error checks for PyUnicode_AsUTF8(). 20 November 2016, 06:48:07 UTC
144f77a Issue #28715: Added error checks for PyUnicode_AsUTF8(). 20 November 2016, 06:47:21 UTC
3c38e06 Issue #27998: Documented bytes paths support on Windows. 20 November 2016, 06:23:07 UTC
bb08db4 Fixes empty tuple case. 20 November 2016, 05:14:27 UTC
eccaa06 Issue #28732: Adds new errors to spawnv emulation for platforms that only have fork and execv 20 November 2016, 04:11:56 UTC
bce2626 Issue #28732: Raise ValueError when argv[0] is empty 20 November 2016, 03:17:26 UTC
93ff872 Issue #28732: Raise ValueError when argv[0] is empty. 20 November 2016, 03:03:54 UTC
back to top