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

sort by:
Revision Author Date Message Commit Date
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
e28209f Issue #9051: Added tests for pickling and copying the timezone objects. 16 November 2015, 09:12:58 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
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
0d44111 Issue #25388: Fixed tokenizer crash when processing undecodable source code with a null byte. 14 November 2015, 13:10:35 UTC
806fb25 fix build with older openssl (#25569) 14 November 2015, 08:09:22 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
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
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
abe9625 asyncio: Fix sporadic failing unittests in debug mode 13 November 2015, 17:28:48 UTC
9cccfce Issue #25605: Document exceptions raised by fcntl.ioctl() and fcntl.flock() 13 November 2015, 08:13:48 UTC
5496ba2 Indent 12 November 2015, 20:24:33 UTC
c15a7c6 Whitespace 12 November 2015, 20:06:07 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
8402324 Issue #25607: Restore old distutils logging threshold after running tests that parse command line arguments. 12 November 2015, 17:46:23 UTC
fda7fe0 Restore old distutils logging threshold after running test_log. 12 November 2015, 11:15:41 UTC
d7a4415 Issue #22995: Default implementation of __reduce__ and __reduce_ex__ now rejects builtin types with not defined __new__. Added tests for non-pickleable types. 12 November 2015, 09:23:04 UTC
a9dcdab always set OP_NO_SSLv3 by default (closes #25530) 12 November 2015, 06:38:41 UTC
eda06c8 fix memory leak in _get_crl_dp (closes #25569) Patch started by Stéphane Wirtel. 12 November 2015, 06:07:38 UTC
71a0b43 Rewrite re.VERBOSE section. It now has slightly better rationale and a less awkward wording in the explanation. Inspired by a report of a neither/or conflict by 'animalize' on docs@. 12 November 2015, 05:32:14 UTC
e1dc3d4 Issue #6598: Avoid clock wrapping around in test_make_msgid_collisions. Use time.monotonic or time.time instead of time.clock. 10 November 2015, 17:50:14 UTC
40fe35a Issue #25263: Fixed the tkinter.test.test_tkinter.test_font.FontTest test failure when the test is ran the second time. The root attribute was set in parent class in setUpClass and then overridded in child class in tearDownClass. 10 November 2015, 13:30:35 UTC
fed16ec Added missed periods at the ends of sentences in Misc/NEWS. 09 November 2015, 22:20:43 UTC
faf7060 Fixed markup in Misc/NEWS. 09 November 2015, 21:41:39 UTC
b63902a Issue #25582: Fixed 100 MB memory leak in test_ctypes. 09 November 2015, 20:31:10 UTC
ba27014 Issue #24306: Sets component ID for launcher to match 3.5 and later to avoid downgrading. 07 November 2015, 18:07:04 UTC
411dfd8 Issue #22643: Skip test_case_operation_overflow on computers with low memory. 07 November 2015, 14:54:48 UTC
608c213 Issue #892902: Added new tests for pickling recursive collections. 07 November 2015, 09:16:10 UTC
eeb896c Issue #24802: Copy bytes-like objects to null-terminated buffers if necessary This avoids possible buffer overreads when int(), float(), compile(), exec() and eval() are passed bytes-like objects. Similar code is removed from the complex() constructor, where it was not reachable. Patch by John Leitch, Serhiy Storchaka and Martin Panter. 07 November 2015, 02:32:21 UTC
9ad0aae Issue #18010: Fix pydoc web server search to handle package exceptions Implementation by Antoine Pitrou. 06 November 2015, 00:27:14 UTC
ade0412 asyncio: Optimize asyncio.sleep(0) 05 November 2015, 19:29:04 UTC
5be2dac remove trailing ws 04 November 2015, 06:43:31 UTC
c2f0121 link to modern PUG url 04 November 2015, 06:42:02 UTC
8778c6b Use sys.platform instead of os.name to detect Windows in asyncio docs. Patch by Akira Li. 02 November 2015, 17:15:47 UTC
d65c949 Issue #25523: Further a-to-an corrections. 02 November 2015, 12:10:23 UTC
7462b64 Issue #25523: Correct "a" article to "an" article This changes the main documentation, doc strings, source code comments, and a couple error messages in the test suite. In some cases the word was removed or edited some other way to fix the grammar. 02 November 2015, 03:37:02 UTC
314464d Issue #25510: fileinput.FileInput.readline() now returns b'' instead of '' at the end if the FileInput was opened with binary mode. Patch by Ryosuke Ito. 01 November 2015, 14:43:58 UTC
1f1177d Fix some spelling errors in documentation and code comments 31 October 2015, 11:48:53 UTC
3e8a7ad Issue #25519: Mark difflib.ndiff as a functions where not already. 30 October 2015, 23:41:16 UTC
a05e7f6 Issue #25505: Remove unused buggy method. 30 October 2015, 23:25:34 UTC
bbdc065 Issue #25507: move test-specific imports to test function (idlelib.IOBinding). 30 October 2015, 06:47:06 UTC
dcc13ef fix usage of undefined name (#25504) 30 October 2015, 04:10:57 UTC
ea4cb63 Issue #21827: Fixed textwrap.dedent() for the case when largest common whitespace is a substring of smallest leading whitespace. Based on patch by Robert Li. 28 October 2015, 19:39:36 UTC
68b6874 Issue #25432: Explain isinstance behaviour when type is a tuple. 28 October 2015, 07:14:56 UTC
df2660e Issue #25494: Remove extra quote from docstring. Patch by John Mark Vandenberg. 28 October 2015, 03:00:41 UTC
4c973e9 Display IDLE warning as a warning rather than as an error. Clarify message and expected action for beginners. Guard against astral chars in path incorporated in message. 27 October 2015, 07:38:02 UTC
5487c13 Issue #23391: Restore OSError constructor argument documentation This restores details lost in revision 097f4fda61a4 (since Python 3.3, related to the new OSError subclasses). Further additions: * Markup for attributes and constructor signature * Explain "winerror" and "filename2" * Extend test to check for filename2 defaulting to None * Clarify that the constructor can return a subclass I have intentionally left out any details of allowing more than five arguments, or how the "args" attribute is set for four or more arguments. These details seem to be dependent on the Python version and platform. 26 October 2015, 11:05:42 UTC
f085a16 Issue #25456: Fix test_idle when Tcl/Tk DLLs are loaded from python.exe's home rather than from elsewhere on PATH. 25 October 2015, 04:22:16 UTC
d9dbf49 accepted sockets shouldn't inherit the SOCK_NONBLOCK flag (closes #25471) 25 October 2015, 03:06:04 UTC
458123b Issue21160: Correct comments in nturl2path. Patch by Jurko Gospodnetić. 24 October 2015, 14:39:36 UTC
677744b Closes #25456: Copy Tcl/Tk DLLs to build directory on Windows This removes the need to add externals/tcltk[64]/bin to PATH to be able to import tkinter. Also documents the necessity for the DLLs to be on PATH or in python.exe's directory. 24 October 2015, 06:34:22 UTC
0e316f6 Issue #25461: Rephrase os.walk() doc Patch written by Bernt Røskar Brenna. 23 October 2015, 10:38:11 UTC
d081229 Issue #24782: Limit width of canvas and hence IDLE settings dialog. 22 October 2015, 07:27:31 UTC
47304c0 Issue #24782: Don't try to run now-removed extension dialog test. 20 October 2015, 06:15:28 UTC
f84499a rstlint: Fix "default role used" warning This should make buildbots green. 20 October 2015, 00:41:38 UTC
19ff697 Issue #24885: Update note in docs about stream convenience functions. 19 October 2015, 20:18:04 UTC
06d48db Fix whitespace. 19 October 2015, 19:00:04 UTC
c44ecdf Issue #25441: asyncio: Raise error from drain() when socket is closed. 19 October 2015, 18:49:30 UTC
2bf91bf - Issue #25440: Fix output of python-config --extension-suffix. 19 October 2015, 12:07:57 UTC
277640a Closes #25411: Improved Unicode support in SMTPHandler. 17 October 2015, 15:13:10 UTC
4de9dae Added entry to logging cookbook. 17 October 2015, 12:58:19 UTC
edb9111 Issue #25418: Fix markup in object.__hash__ documentation Patch by TAKASE Arihiro. 16 October 2015, 08:22:50 UTC
b2f8760 Issue #24782: whitespace 14 October 2015, 02:09:06 UTC
93f3542 Issue #24782: Finish converting the Configure Extension dialog into a new tab in the IDLE Preferences dialog. Code patch by Mark Roseman. 14 October 2015, 02:03:51 UTC
5805dde Issue #25380: Fixed protocol for the STACK_GLOBAL opcode in pickletools.opcodes. 13 October 2015, 18:12:32 UTC
83fd0a8 Issue #25093: Fix test_tcl's testloadWithUNC for paths with spaces Patch by Serhiy Storchaka. 13 October 2015, 04:27:58 UTC
b395188 actually link to the version attributes documentation 12 October 2015, 06:03:22 UTC
d0cadba Issue #22726: Re-activate config dialog help button with some content about the other buttons and the new IDLE Dark theme. 12 October 2015, 02:07:31 UTC
1fdc80b Cleanup test_descr: remove C8 that is the same as C3. 11 October 2015, 14:42:39 UTC
0071b3d don't mention Python 2.2 (closes #25375) 11 October 2015, 06:23:55 UTC
414918a use the with statement for locking the internal condition (closes #25362) Patch by Nir Soffer. 11 October 2015, 02:34:46 UTC
b397e3b add a missing comma (closes #25371) 11 October 2015, 02:32:20 UTC
back to top