https://github.com/python/cpython

sort by:
Revision Author Date Message Commit Date
6e86580 Version bump for Python 3.5.1rc1. 22 November 2015, 07:54:22 UTC
1fb5b73 Updated pydoc topics for 3.5.1rc1. 22 November 2015, 07:50:36 UTC
23244e5 Issue #25689: Merge ftplib and nntplib docs from 3.4 into 3.5 21 November 2015, 22:48:54 UTC
828123c Issue #25689: Fix language in ftplib and nntplib docs Original patch by Silent Ghost. 21 November 2015, 22:03:08 UTC
4a93cf7 Update idlelib/NEWS.txt. 21 November 2015, 18:33:06 UTC
6e92c11 Update idlelib/NEWS.txt. 21 November 2015, 18:31:27 UTC
7537898 Misc/NEWS entries for IDLE. 21 November 2015, 18:20:09 UTC
c75d37f Misc/NEWS entries for IDLE. 21 November 2015, 18:19:03 UTC
efd83fe Issue #25686: test_shutil no longer uses the distutils package for searching and running external archivers. 21 November 2015, 12:09:58 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
e99e977 Issue #25626: Change zlib to accept Py_ssize_t and cap to UINT_MAX The underlying zlib library stores sizes in “unsigned int”. The corresponding Python parameters are all sizes of buffers filled in by zlib, so it is okay to reduce higher values to the UINT_MAX internal cap. OverflowError is still raised for sizes that do not fit in Py_ssize_t. Sizes are now limited to Py_ssize_t rather than unsigned long, because Python byte strings cannot be larger than Py_ssize_t. Previously this could result in a SystemError on 32-bit platforms. This resolves a regression in the gzip module when reading more than UINT_MAX or LONG_MAX bytes in one call, introduced by revision 62723172412c. 20 November 2015, 08:13:35 UTC
d13cade Merge with 3.4 21 November 2015, 05:05:17 UTC
0a7b2ae Merge with 3.4 21 November 2015, 00:37:00 UTC
92e5d2f Close issue25594: advise against accessing Enum members from other members 20 November 2015, 21:17:27 UTC
875e4fb Merge 3.4 20 November 2015, 17:57:47 UTC
e342b8e Merge 3.4 20 November 2015, 17:44:03 UTC
4733e1f Merge 3.4 20 November 2015, 17:41:43 UTC
abe6107 Merge 3.4 20 November 2015, 17:39:51 UTC
812b248 Merge with 3.4 20 November 2015, 17:22:06 UTC
6d9e923 Issue #25665: Test pickling with all protocols in test_typing. 20 November 2015, 16:33:02 UTC
0aaeacb Merge: #25679: spelling fix 20 November 2015, 14:58:51 UTC
6fbd774 Issue #25670: Remove duplicate getattr() from ast.NodeTransformer 20 November 2015, 07:49:58 UTC
97cabb9 Issue #25583: Merge makedirs fix from 3.4 into 3.5 20 November 2015, 02:35:46 UTC
82f9fea Issue #25593: Change semantics of EventLoop.stop(). (Merge 3.4->3.5) 19 November 2015, 21:33:34 UTC
41f69f4 Issue #25593: Change semantics of EventLoop.stop(). 19 November 2015, 21:28:47 UTC
557d1eb Issue #25665: Make NamedTuple picklable. 19 November 2015, 16:16:31 UTC
05e3090 Remove unused imports from test_typing.py. 19 November 2015, 05:18:51 UTC
bb7c57c Issue #25472: In B[<type>], insert B in front of __bases__, to make the __dict__ descriptor work. 19 November 2015, 05:12:58 UTC
a82642f Issue #25583: Avoid incorrect errors raised by os.makedirs(exist_ok=True) 19 November 2015, 04:48:44 UTC
6efc7e7 Merge 3.4 18 November 2015, 17:44:49 UTC
01a65af asyncio.docs: Fix versionadded 18 November 2015, 17:44:31 UTC
576fe71 asyncio: Error if awaiting in parallel on the same coroutine See https://github.com/python/asyncio/pull/293 for details. 18 November 2015, 17:40:26 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
1535311 Issue #23200: Merge zlib doc from 3.4 into 3.5 18 November 2015, 02:45:51 UTC
38fe4dc Issue #23200: Document that max_length=0 is not supported 18 November 2015, 00:59:17 UTC
ce19839 Issue #20468: Merge getpagesize doc from 3.4 into 3.5 17 November 2015, 22:23:21 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
5498f2b Merge 3.4 17 November 2015, 17:20:02 UTC
5d7e3b6 asyncio: Cleanup Future API See https://github.com/python/asyncio/pull/292 for details. 17 November 2015, 17:19:41 UTC
7f324ba Merge 3.4 17 November 2015, 17:02:32 UTC
0013cce asyncio: Sync with github 17 November 2015, 17:02:21 UTC
4eccf4b Issue #25615: Merge glob doc from 3.4 into 3.5 17 November 2015, 00:19:10 UTC
9f3c094 Issue #25615: Document unsorted behaviour of glob; patch by Dave Jones 16 November 2015, 23:46:22 UTC
cfff959 Merge 3.4 16 November 2015, 20:12:44 UTC
a4afc48 asyncio: Optimize Task._wakeup See https://github.com/python/asyncio/pull/289 for details. 16 November 2015, 20:12:10 UTC
344904c asyncio.docs: Document Transport.is_closing (merge 3.4) 16 November 2015, 17:47:15 UTC
1744d53 asyncio.docs: Document Transport.is_closing 16 November 2015, 17:46:41 UTC
1334f83 Merge 3.4 16 November 2015, 17:43:35 UTC
5bb1afb asyncio: Add Transport.is_closing() See https://github.com/python/asyncio/pull/291 for details. 16 November 2015, 17:43:21 UTC
a27a1e5 Issue #25498: Fixed contributors name. 16 November 2015, 16:45:39 UTC
da32d26 Issue #25498: Fixed contributors name. 16 November 2015, 16:45:23 UTC
4bc534d Merge with 3.4 16 November 2015, 12:36:33 UTC
4932ac2 Issue #24750: whitespace 16 November 2015, 12:36:22 UTC
5922d73 Merge with 3.4 16 November 2015, 12:32:46 UTC
d36d817 Issue #24750: Improve appearance of IDLE editor window status bar. Patch by Mark Roseman. 16 November 2015, 12:32:26 UTC
4234710 Issue #20220: Merge time zone workaround from 3.4 into 3.5 16 November 2015, 09:42:41 UTC
f242aeb Issue #9051: Added tests for pickling and copying the timezone objects. 16 November 2015, 09:19:31 UTC
e28209f Issue #9051: Added tests for pickling and copying the timezone objects. 16 November 2015, 09:12:58 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
a4d33b3 make the PyUnicode_FSConverter cleanup set the decrefed argument to NULL (closes #25630) 16 November 2015, 05:57:39 UTC
d0a5b1c Fixes #23564: Fix a partially broken sanity check in the _posixsubprocess internals regarding how fds_to_pass were passed to the child. The bug had no actual impact as subprocess.py already avoided it. 16 November 2015, 05:15:26 UTC
2cd1b3b Fix issue #6973: When we know a subprocess.Popen process has died, do not allow the send_signal(), terminate(), or kill() methods to do anything as they could potentially signal a different process. 16 November 2015, 02:26:11 UTC
a0c9caa Fix issue #6973: When we know a subprocess.Popen process has died, do not allow the send_signal(), terminate(), or kill() methods to do anything as they could potentially signal a different process. 16 November 2015, 02:19:10 UTC
fcc2e71 merge 3.4 (#25578) 14 November 2015, 23:14:42 UTC
025a1fd rm trailing ws 14 November 2015, 23:12:38 UTC
f0c9038 fix possible memory lea k in _get_aia_uri (closes #25578) 14 November 2015, 23:12:18 UTC
7e2b870 Issue #25388: Fixed tokenizer crash when processing undecodable source code with a null byte. 14 November 2015, 13:11:17 UTC
0d44111 Issue #25388: Fixed tokenizer crash when processing undecodable source code with a null byte. 14 November 2015, 13:10:35 UTC
2463001 merge 3.4 (#25569) 14 November 2015, 08:11:09 UTC
806fb25 fix build with older openssl (#25569) 14 November 2015, 08:09:22 UTC
97ce0fa Fix grammar in whatsnew/3.5.rst and elsewhere Mainly missing grammatical articles (the, a). 14 November 2015, 01:14:54 UTC
32acc16 Merge typo and grammar fixes from 3.4 into 3.5 14 November 2015, 01:14:25 UTC
2e4571a Fix a few grammar problems in the documentation and comments 14 November 2015, 01:07:43 UTC
ac34e09 Correct Content-Type syntax in documentation 14 November 2015, 00:58:32 UTC
fa9ea04 Issue #25590: Merge rlcompleter change from 3.4 into 3.5 13 November 2015, 23:10:39 UTC
06622ea Issue #25590: Make rlcompleter only call getattr() once per attribute Previously it was called another time via hasattr(), and both calls were made once for dir(f) and again for dir(f.__class__). This includes a backport of changing from a list to a set from revision 4dbb315fe667. 13 November 2015, 22:47:00 UTC
75559af Issue #25498: Update error message for 3.5 13 November 2015, 22:12:58 UTC
0da4ac1 Issue #25498: Merge ctypes crash fix from 3.4 into 3.5 13 November 2015, 22:12:12 UTC
1bb6515 Issue #25498: Fix GC crash due to ctypes objects wrapping a memoryview This was a regression caused by revision 1da9630e9b7f. Based on patch by Eryksun. 13 November 2015, 21:43:39 UTC
c73771a Merge 3.4 13 November 2015, 17:29:03 UTC
abe9625 asyncio: Fix sporadic failing unittests in debug mode 13 November 2015, 17:28:48 UTC
19a70e7 Issue #25462: The hash of the key now is calculated only once in most operations in C implementation of OrderedDict. 13 November 2015, 12:48:36 UTC
33be3e3 Merge 3.4 (issue #25605) 13 November 2015, 08:14:05 UTC
9cccfce Issue #25605: Document exceptions raised by fcntl.ioctl() and fcntl.flock() 13 November 2015, 08:13:48 UTC
30c328f Merge with 3.4 12 November 2015, 20:24:50 UTC
5496ba2 Indent 12 November 2015, 20:24:33 UTC
8f1a980 Merge with 3.4 12 November 2015, 20:06:20 UTC
c15a7c6 Whitespace 12 November 2015, 20:06:07 UTC
e19f3ec Merge with 3.4 12 November 2015, 20:03:17 UTC
d0c0f00 Issue #25313: Change the handling of new built-in text color themes to better address the compatibility problem introduced by the addition of IDLE Dark. Consistently use the revised idleConf.CurrentTheme everywhere in idlelib. 12 November 2015, 20:02:57 UTC
2f85555 Issue #25607: Restore old distutils logging threshold after running tests that parse command line arguments. 12 November 2015, 17:47:14 UTC
8402324 Issue #25607: Restore old distutils logging threshold after running tests that parse command line arguments. 12 November 2015, 17:46:23 UTC
back to top