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

sort by:
Revision Author Date Message Commit Date
80f0c82 Fixed and optimized a test of issue #22526. 12 October 2014, 14:13:06 UTC
987a02b Issue #14105: Change comment to reflect fix. Patch by Saimadhav Heblikar. 12 October 2014, 05:10:58 UTC
d0a5e9b Issue #22604: Fix assertion error in debug mode when dividing a complex number by (nan+0j). 10 October 2014, 21:49:32 UTC
f126fa5 Issue #15414: Clean and correct the os.path.join docs. In particular, correctly describe the behavior of ntpath.join. Based on a patch by Dave Sawyer. 10 October 2014, 21:03:14 UTC
f85a856 Issue #11694: Raise ConversionError in xdrlib as documented 10 October 2014, 18:11:34 UTC
c305ad7 Issue #22575: Revise bytearray entry for 2.7. 10 October 2014, 17:02:55 UTC
a68109a #0712: 2to3 has a new "asserts" fixer that replaces deprecated names of unittest methods. Patch by Ezio Melotti, docs by Berker Peksag. 10 October 2014, 03:13:42 UTC
1375538 De-'colour'ize stdlib except for idlelib.configDialog. Tweak docstrigs and comments in affected functions in idlelib.configHandler. 09 October 2014, 22:44:26 UTC
a6066ce Closes #22580: Fix documentation of PyUnicode_Tailmatch() The result type is Py_ssize_t (and not int). 09 October 2014, 09:14:04 UTC
23030db Issue 3068: Move idlelib.configDialog action button creation into a separate method so it can be reused by the new extension dialog. 09 October 2014, 00:29:05 UTC
163d7fb idlelib.configHandler: revise docstrings, add spaces, use False/True, add some TODOs (mostly to do after add tests), and make a few other changes. 07 October 2014, 03:26:17 UTC
05179d5 use source role instead of linking to svn 07 October 2014, 01:10:25 UTC
3d1f2d3 make _socket.socket weakrefable (closes #22569) Patch from Alex Gaynor. 06 October 2014, 18:38:20 UTC
7788dba Closes #19071: "self" argument is not the module for module functions in 2.x. 06 October 2014, 16:01:02 UTC
436ebf8 Closes #16155: fix a few errors in doctest output of the FAQ pages. 06 October 2014, 15:51:46 UTC
8d867cb Closes #17057: fix grammar in old-style vs new-style class docs. 06 October 2014, 15:46:43 UTC
c468aba #18034: update FAQ to suggest importlib.import_module instead of __import__. Patch by Wouter van Heyst. 04 August 2014, 16:34:29 UTC
ae41086 PEP 8 spacing in idlelib.configDialog: mostly a = b in assignments, a, b in arg lists, and hanging indents for long arg lists. 04 August 2014, 03:02:53 UTC
c4a907d Issue #13540: Merge commits 03 August 2014, 18:57:20 UTC
2b49203 Issue #13540: Update references to Action class to match syntax used for other classes in this file. 03 August 2014, 18:54:11 UTC
9376c8b Fix typo in comment. 02 August 2014, 06:51:51 UTC
a16fd7a - update config.guess and config.sub to support openrisc. 01 August 2014, 15:48:17 UTC
04fa704 Issue #21580: Now Tkinter correctly handles binary "data" and "maskdata" configure options of tkinter.PhotoImage. Added private Tkapp method _createbytearray(). 31 July 2014, 04:48:14 UTC
19b7a75 Issue #22068: Don't create self reference cycles in idlelib.ConfigDialog. In 2.7, these become leaks and cause test_gc to fail. 30 July 2014, 23:24:26 UTC
77149a1 Issue #21951: Temporary skip crashing test_user_command on AIX. 30 July 2014, 07:58:34 UTC
2af8d2f Issue #22023: Fix %S, %R and %V formats of PyUnicode_FromFormat(). 29 July 2014, 22:39:05 UTC
af09c77 Issue #21591: add test for qualified exec in tuple form. 29 July 2014, 15:24:24 UTC
9b1d670 Issue #21591: Handle exec backwards compatibility in the AST builder. Instead of deferring until runtime. This makes sure we hit the right conditions in dealing with unqualified exec statements. Reviewed by Victor Stinner. Test follows in a later commit. 29 July 2014, 15:21:39 UTC
c382807 Issue #19612: subprocess.communicate() now also ignores EINVAL when using at least two pipes. 28 July 2014, 22:04:54 UTC
110796f Reduce unnecessary 2.7 versus 3.4+ differences in idlelib/configDialog.py. Only change 2.7 version. Remove ".keys()" from "x in y.keys()" (leave .keys() elsewhere alone). Change "string.join" to "' '.join" (and string.join(s, ';') to ';'.join(s)). Change spacing to match 3.4 (will later make spacing changes to both). 27 July 2014, 08:07:18 UTC
87355a7 Modernize turtledemo with conditional expressions; remove duplicate line. 27 July 2014, 07:00:47 UTC
0a649c7 Fix repr(_socket.socket) on Windows 64-bit: don't fail with OverflowError on closed socket. 26 July 2014, 12:52:55 UTC
465db3c socketmodule.c: backport INVALID_SOCKET from Python 3.5 to simplify the code 26 July 2014, 12:47:56 UTC
5a1427c Issue #19875: Fix random test_getsockaddrarg() failure. 26 July 2014, 12:44:50 UTC
6d8f29a Issue #21958: Define HAVE_ROUND when building with VS 2013 and above. Patch by Zachary Turner. 25 July 2014, 19:34:19 UTC
1b5f58d Issue #21990: Cleanup unnecessary inner class definition in saxutils. 25 July 2014, 17:26:36 UTC
2ce9ddd Issue #22061: Add deprecation warnings in empty obsolete methods. 25 July 2014, 09:23:08 UTC
98e6fa6 Issue #22061: remove call of useless function slated for removal. 25 July 2014, 07:06:27 UTC
8ac01bf Issue #22053: Make help work, after previous patch for this issue disabled it by removing global 'demo'. Refactor and remove duplicate code. 25 July 2014, 05:56:17 UTC
1d9457d Issue #19884, readline: calling rl_variable_bind ("enable-meta-key", "off") does crash on Mac OS X which uses libedit instead of readline. 24 July 2014, 20:11:21 UTC
fe9ebe4 Issue #16133: The asynchat.async_chat.handle_read() method now ignores socket.error() exceptions with blocking I/O errors: EAGAIN, EALREADY, EINPROGRESS, or EWOULDBLOCK. Initial patch written by Xavier de Gaye. 24 July 2014, 17:15:00 UTC
186f665 Issue #1730136: Fix comparison between a tk Font object and an object of a different type. 24 July 2014, 14:48:28 UTC
63a4747 Issue #19884: readline: Disable the meta modifier key if stdout is not a terminal to not write the ANSI sequence "\033[1034h" into stdout. This sequence is used on some terminal (ex: TERM=xterm-256color") to enable support of 8 bit characters. 24 July 2014, 10:22:24 UTC
909d61f Fix grammar 24 July 2014, 05:08:15 UTC
cbe6d24 Issue #22053: Cleanup turtledemo start and stop and fix debug shutdown warning. 23 July 2014, 21:27:51 UTC
f2eb721 Issue #19493: Fix two uses of ctypes.test.requires (it's not a decorator) and skip test_win32.FunctionCallTestCase.test_SEH when Python was compiled in debug configuration or by a non-MSC compiler. 23 July 2014, 19:29:25 UTC
12e7870 Merge heads 23 July 2014, 19:12:39 UTC
58f9b57 Merge heads 23 July 2014, 19:07:37 UTC
9cb68ca Issue #6167: Backported tests for Scrollbar.activate() and Scrollbar.set() from 6ae34a948cb4. 23 July 2014, 19:06:26 UTC
e2fbf4f Issue #21597: Turtledemo text pane can now be widened to view or copy complete lines or narrowed for small screens. Issie #19132: Turtledemo buttons no longer disappear when window is shrun. Patch mostly by Lita Cho (21597) using idea from patch by Jan Kanis (18132). 23 July 2014, 19:01:07 UTC
85b5b73 Fix minor typo in round docs. Reported by Scott Hinton on docs@. 22 July 2014, 18:14:54 UTC
f6aac5d Closes #21665: Don't use OPTS=noxp or -DWINVER=0x0500 when compiling Tcl/Tk on the buildbots. 2.7 does still support Win2k, but using those options makes default ttk ugly while not using them doesn't seem to break Win2k. 22 July 2014, 17:26:34 UTC
fc1ae6c Fixed bugs in reprs of CookieJar and multiprocessing.dummy.Value. 22 July 2014, 08:11:01 UTC
7cc3b0a Backout 308f3c1e36d3. This change (issue21044) does not need to be merged on 2.7, as the os.fdopen sets the name attribute to '<fdopen>' and not to the fd. 22 July 2014, 07:39:59 UTC
7f7d99c Issue #15759: "make suspicious", "make linkcheck" and "make doctest" in Doc/ now display special message when and only when there are failures. 22 July 2014, 07:28:36 UTC
4e64d87 Issue #21976: Fix test_ssl to accept LibreSSL version strings. Thanks to William Orr. 21 July 2014, 22:35:01 UTC
b606d45 Issue #21868: Prevent turtle crash due to invalid undo buffer size. 21 July 2014, 04:26:04 UTC
e2d1e64 add # 20 July 2014, 20:05:01 UTC
0fb88f7 correct ref counting of default_action (closes #22017) 20 July 2014, 20:04:11 UTC
69cd346 Issue #13540: Removed redundant documentation about Action instance attributes. Updated example and documentation per recommendations by Steven Bethard in msg149524. 20 July 2014, 14:52:46 UTC
8f25762 args doesn't need to be a tuple (closes #17210) 19 July 2014, 23:34:33 UTC
70beff1 Issue #22006: Remove outdated thread module caveat. Thanks Dan O'Reilly for the report. 19 July 2014, 20:47:13 UTC
ee5729d add missing 'because' (closes #22008) Patch from A Kaptur. 18 July 2014, 23:25:13 UTC
a2dd3b2 Issue #22004: Correct an argument name. 18 July 2014, 14:11:48 UTC
e7829bd Issue 21044: tarfile.open() now handles fileobj with an integer 'name' attribute. Based on patch by Martin Panter. 16 July 2014, 20:58:12 UTC
fdfe9fc Add helpers for testing unicode disabled builds. 16 July 2014, 20:50:37 UTC
2d011e6 Fix a minor typo in the turtle docs. Found by Brandon Passmore on docs@. 16 July 2014, 19:48:11 UTC
af0dce9 Issue #21982: Add minimal unittest for configDialog with 46% coverage. 15 July 2014, 03:07:21 UTC
5d93f40 Call PyErr_NoMemory() when PyMem_Malloc() fails. 14 July 2014, 09:20:01 UTC
6e9a3ac Issue #17506: Synchronize Misc/NEWS and idlelib/NEWS.txt for 2.7. 14 July 2014, 06:07:26 UTC
e2c409f Issue #18592: Method return signature changes made to SearchDialogBase for test purposes are now reflected in GrepDialog and ReplaceDialog. Docstrings are improved. Initial patch by Saimadhav Heblikar 13 July 2014, 21:27:21 UTC
c893762 Issue #21323: Fix CGIHTTPServer to again handle scripts in CGI subdirectories, broken by the fix for security issue #19435. Patch by Zach Byrne. 13 July 2014, 05:01:15 UTC
f289287 #21959: Adds 2.7.8 product code to Tools/msi/uuids.py 11 July 2014, 22:32:02 UTC
d6c3163 Issue #18592: Make unittest for SearchDialogBase work on all tk versions. 11 July 2014, 04:37:10 UTC
4761934 Idle News entries. 11 July 2014, 04:24:22 UTC
c03c110 #21940: Add unittest for WidgetRedirector. Initial patch by Saimadhav Heblikar. 11 July 2014, 04:15:54 UTC
d11dde4 Issue #21940: add docstrings to idlelib.WidgetRedirector. 10 July 2014, 05:16:42 UTC
f97376f #21945: fix typo in Cookie module docstring. 09 July 2014, 12:45:25 UTC
65a6436 Fix typo found by Scott Hinton on docs@ 07 July 2014, 20:31:21 UTC
5fc570f Issue #21881: Just omit tests for platform-specific NaN representation in test_tcl. 07 July 2014, 11:47:17 UTC
668af7e Issue #21881: Be more tolerant in test_tcl to not parsable by float() NaN representations (on mips and m68k platforms). 07 July 2014, 10:44:11 UTC
9be5789 Issue #21923: Prevent AttributeError in distutils.sysconfig.customize_compiler due to possible uninitialized _config_vars. Original patch by Alex Gaynor. 06 July 2014, 23:11:44 UTC
4f7e09a #20135: move FAQ about mutable default arguments to the programming FAQs page. 06 July 2014, 17:53:27 UTC
a830501 properly decref the return value of close() 05 July 2014, 00:00:25 UTC
6690eed Issue #21151: Fixed a segfault in the _winreg module. When ``None`` was passed as a ``REG_BINARY`` value to SetValueEx, PyMem_DEL was called on an uninitialized buffer. Patch by John Ehresman. (Also an incidental typo fix in a comment in test_winreg) 03 July 2014, 15:57:44 UTC
809b665 Fix guidance for subclassing collections.Set() 02 July 2014, 23:30:52 UTC
f6b3c84 Issue #21090: io.FileIO.readall() does not ignore I/O errors anymore. Before, it ignored I/O errors if at least the first C call read() succeed. 02 July 2014, 21:12:48 UTC
cf0a706 Issue #19870: BaseCookie now parses 'secure' and 'httponly' flags. Backport of issue #16611. 02 July 2014, 07:48:27 UTC
228b99e More idlelib cleanup inspired by pyflakes. 02 July 2014, 01:33:26 UTC
9bc5056 Delete a few unused names suggested by pyflakes. 01 July 2014, 22:52:31 UTC
5b1b38c Issue #14097: Backport 796d1371605d and subsequent changes. The 2.7 tutorial introduction now matches the 3.x introduction as rewritten by Ezio Melotti, with appropriate changes for 2.x. 01 July 2014, 19:25:34 UTC
6a0fe8d Issue #18592: Refactor 2 SearchDialogBase.create_(option/other)_buttons methods to remove duplication and return info for tests. Rewrite corresponding tests. Test_create_option_buttons was not testing anything because of buggy comparisons. Use Python subscripting to get widget options. 01 July 2014, 03:52:14 UTC
1530a82 whitespace 01 July 2014, 00:03:23 UTC
72eb075 Issue #18592: Add unittests for SearchDialogBase. Patch by Phil Webster. 30 June 2014, 23:59:57 UTC
f7f746a Issue #21882: In turtle demos, remove module scope gui and sys calls by moving them to the module's main function. 30 June 2014, 20:09:16 UTC
04a37be Issue #21811: Add Misc/NEWS entry. 30 June 2014, 06:38:55 UTC
7ce6a96 after 2.7.8 30 June 2014, 01:59:07 UTC
808335f Added tag v2.7.8 for changeset ee879c0ffa11 30 June 2014, 01:58:31 UTC
fdbdcfe bump to 2.7.8 30 June 2014, 01:58:16 UTC
f722c29 update pydoc-topics 30 June 2014, 01:57:11 UTC
back to top