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

sort by:
Revision Author Date Message Commit Date
84e7e5f Skip test for issue #17976 if /dev/null is not available. 17 December 2013, 12:53:32 UTC
6d56231 Issue #17976: Fixed potential problem with file.write() not detecting IO error by inspecting the return value of fwrite(). Based on patches by Jaakko Moisio and test by Victor Stinner. 17 December 2013, 12:40:06 UTC
2f43b63 Removed old implementation of ntpath.splitunc() (issue #19912). 16 December 2013, 16:43:00 UTC
51e90bc Issue #19987: Re-write test_alias_fallback in test_winsound to have two acceptable outcomes: success or RuntimeError. Without being able to actually hear whether a sound was played, either one could be right, but any other error would be a failure. 16 December 2013, 14:58:10 UTC
4d39df3 Merge heads 16 December 2013, 13:16:11 UTC
dd5a46c Issue #19912: Fixed numerous bugs in ntpath.splitunc(). * splitunc() no more returns illegal result for paths with redundant slashes. * splitunc() now correctly processes the u'İ' character (U+0130, LATIN CAPITAL LETTER I WITH DOT ABOVE). * Added new tests for splitunc(). 16 December 2013, 13:15:29 UTC
7a2fe9c Issue #19965: Make sure that Python-ast.h is properly taken into account in the makefile. 15 December 2013, 18:07:44 UTC
d1a61dc Issue #19623: Fixed writing to unseekable files in the aifc module. Fixed writing 'ulaw' (lower case) compressed AIFC files. 14 December 2013, 18:34:33 UTC
a92cc91 Issue #17919: Fixed integer overflow in the eventmask parameter. 14 December 2013, 17:11:04 UTC
91b88c8 #19981: fix typo in email.mailbox docs. Patch by Claudiu Popa. 14 December 2013, 10:42:29 UTC
17f22c9 Issue #17919: select.poll.poll() again works with poll.POLLNVAL on AIX. 13 December 2013, 10:09:05 UTC
66c6e9d Issue #14432: Generator now clears the borrowed reference to the thread state Fix a crash when a generator is created in a C thread that is destroyed while the generator is still used. The issue was that a generator contains a frame, and the frame kept a reference to the Python state of the destroyed C thread. The crash occurs when a trace function is setup. 13 December 2013, 01:37:09 UTC
9ffb148 Fixes Issue #17200: telnetlib's read_until and expect timeout was broken by the fix to Issue #14635 in Python 2.7.4 to be interpreted as milliseconds instead of seconds when the platform supports select.poll (ie: everywhere). It is now treated as seconds once again. 11 December 2013, 02:22:03 UTC
278543d Issue #18270: Prevent possible IDLE AttributeError on OS X when no initial shell window is present. (Original patch by Terry Reedy) 11 December 2013, 00:21:58 UTC
b06231a Issue #19572: Replace a return that shouldn't have been removed from test_os. This should fix the test_os failure on the AMD64 Windows 7 buildbot. 10 December 2013, 22:06:46 UTC
227c01a Issue #19928: Fix test on Windows 10 December 2013, 20:14:28 UTC
1f70221 Issue #19572: More silently skipped tests explicitly skipped. 10 December 2013, 20:09:20 UTC
284164b Skip test for #19878 on Windows. 10 December 2013, 16:23:00 UTC
89c19fd #19943: fix typo noticed by Jakub Wilk. 10 December 2013, 12:05:46 UTC
73188fb Issue #19407: add Python Packaging User Guide notes The stdlib docs for package distribution and building extensions are rather dated, and that isn't expected to change for 2.7 and 3.3. The Python Packaging User Guide isn't complete either, but it's already a much better road map for new users than the existing stdlib docs. 10 December 2013, 11:18:32 UTC
95d7219 Issue #19928: Implemented a test for repr() of cell objects. 10 December 2013, 08:20:11 UTC
7057f3f Issue #19481: print() of unicode, str or bytearray subclass instance in IDLE no more hangs. 10 December 2013, 08:04:41 UTC
7821ff3 Issue #19932: Fix typo in import.h, missing whitespaces in function prototypes. 10 December 2013, 00:23:22 UTC
5493d5e Issue #19099: The struct module now supports Unicode format strings. 08 December 2013, 15:44:50 UTC
337c50b Closes #19878: Fix segfault in bz2 module. Initial patch by Vajrasky Kok. 08 December 2013, 14:31:50 UTC
7c57385 Issue #16373: Prevent infinite recursion for ABC Set class comparisons. 06 December 2013, 21:23:15 UTC
d919da9 Added minor clarification in logging HOWTO. 06 December 2013, 11:21:15 UTC
197e71b Issue #18840: Introduce the json module in the tutorial, and deemphasize the pickle module. 05 December 2013, 22:46:32 UTC
222b284 Issue #7105: weak dict iterators are fragile because of unpredictable GC runs Backport the fix from pyton 3.x for this issue. 05 December 2013, 10:03:45 UTC
c289fa7 Fudge - http.client doesn't exist in 2.7. Use Queue.Empty instead. 04 December 2013, 03:49:30 UTC
0ee9baa Issue #19138: doctest's IGNORE_EXCEPTION_DETAIL now allows no detail at all. Grafted from c80083ad142d. 04 December 2013, 03:02:05 UTC
7b2ac60 Issue #19814: Clarify argparse's docs w.r.t prefix matching 02 December 2013, 13:53:35 UTC
7546220 Fixed JSON tests on wide build when ran from *.pyc files (issue #11489). 01 December 2013, 15:30:55 UTC
df9460f Issue #6477: Revert fbb97f6eb3b3 as it broke test_xpickle. 01 December 2013, 01:43:42 UTC
c6df622 Merge heads. 01 December 2013, 00:56:36 UTC
a293428 Issue #6477: Added pickling support for singletons and their types. 01 December 2013, 00:52:03 UTC
e9cb5e9 Issue #19789: Clarified documentation for logging.disable. 30 November 2013, 22:43:13 UTC
34ca066 Fix typo in Misc/NEWS. 30 November 2013, 22:02:47 UTC
1d3a173 Issue #16231: Allow false values other than None to be used as persistent IDs. 30 November 2013, 21:24:13 UTC
72a01b2 Issue #19595: Re-enable a long-disabled test in test_winsound 28 November 2013, 05:56:04 UTC
26d936a Issue #19795: Improved markup of True/False constants. 29 November 2013, 10:16:53 UTC
71142c4 Fix indentation from previous commit 28 November 2013, 14:37:25 UTC
f933e08 Issue #19815: Fix segfault when parsing empty namespace declaration. Based on patches by Christian Heimes and Vajrasky Kok 28 November 2013, 14:25:45 UTC
cf6a3e2 Skip test_find_mac on Windows (issue #19804). This test requires the ifconfig executable on $PATH, /sbin/, or /usr/sbin. 27 November 2013, 06:57:33 UTC
2a57009 Merge heads 26 November 2013, 20:55:46 UTC
c0aa245 Issue #19588: Fixed tests in test_random that were silently skipped most of the time. Patch by Julian Gindi. 26 November 2013, 20:49:42 UTC
6d9d30d Issue #11508: Fixed uuid.getnode() and uuid.uuid1() on environment with virtual interface. Original patch by Kent Frazier. 26 November 2013, 20:47:05 UTC
dafda9b Issue #11489: JSON decoder now accepts lone surrogates. 26 November 2013, 19:25:15 UTC
60e361f Fix misuse of the bigmemtest decorator 26 November 2013, 19:00:34 UTC
c02c6df Issue #19638: Skip large digit string tests on 32-bit platforms. 26 November 2013, 17:02:46 UTC
c2f8c81 Issue #19638: Raise ValueError instead of crashing when converting billion character strings to float. 26 November 2013, 16:38:25 UTC
9f91d35 Issue #19794: Improved markup for True/False constants. 26 November 2013, 15:32:03 UTC
1313368 Issue #19691: remove outdated mention about RuntimeError 25 November 2013, 18:08:32 UTC
d061efa Fix suspicious markup and sort ignorelist. 25 November 2013, 07:34:24 UTC
d899caa Fix test_fcntl to run properly on systems that do not support the flags used in the "does the value get passed in properly" test. 25 November 2013, 04:45:27 UTC
9cfd466 fix docstring. extra \. 25 November 2013, 04:30:00 UTC
d82634d Fix test.test_support.bind_port() to not cause an error when Python was compiled on a system with SO_REUSEPORT defined in the headers but run on a system with an OS kernel that does not support that new socket option. 25 November 2013, 03:42:15 UTC
2612679 #19620: Fix typo in docstring (noticed by Christopher Welborn). 25 November 2013, 03:14:51 UTC
ef15361 Document that @property can incorporate a docstring from the getter method. Improve readabilty with additional whitespace. 24 November 2013, 22:43:04 UTC
7610ec2 Fixed merging error in changeset 3912934e99ba (issue #19733). 24 November 2013, 16:26:20 UTC
40dcf7f Doc/Makefile: also do "make suspicious" during daily autobuild 24 November 2013, 15:17:54 UTC
f532e7f Add 2.7.7 uuids. 10 November 2013, 18:42:47 UTC
358da5b Issue #19308: fix the gdb plugin on gdbs linked with Python 3 23 November 2013, 16:40:36 UTC
9ec0722 Issue #19733: Temporary disable test_image on MacOSX. 23 November 2013, 13:22:20 UTC
62cd124 Print Tk patchlevel in Tk and Ttk tests in verbose mode (issue19654). 21 November 2013, 17:24:04 UTC
6d24a6e Issue #19599: Use a separate pool for test_terminate(). 21 November 2013, 16:35:12 UTC
5397c97 Issue #19633: Fixed writing not compressed 16- and 32-bit wave files on big-endian platforms. Temporary forbidden test_unseekable_incompleted_write fornot compressed 16- and 32-bit wave file on big-endian platforms. 21 November 2013, 09:04:37 UTC
78ecaba Print Tk patchlevel in test_tcl in verbose mode (issue19654). 20 November 2013, 15:44:38 UTC
eccf9c2 #19449: Handle non-string keys when generating 'fieldnames' error. Backport from 3.3 6e5afeada7ca. 19 November 2013, 18:25:24 UTC
bab2415 - Update config.{guess,sub} for new ports. 19 November 2013, 07:54:06 UTC
000b4c5 Issue #19603: Use specific asserts in test_decr. 17 November 2013, 21:39:24 UTC
ca035a8 Fix buildbot failure 17 November 2013, 20:27:20 UTC
4645bb6 Fix indentation in doc example. 17 November 2013, 20:07:48 UTC
65162a7 Issue #19599: Increase sleep period. 17 November 2013, 17:45:16 UTC
3f8376e Fix handling of SystemExit and exit code. Patch by Brodie Rao. 17 November 2013, 17:24:11 UTC
a69712c Issue 16998: Clarify that += on a shared value is not atomic. 17 November 2013, 17:00:38 UTC
f7a5247 Issue #19508: warn that ssl doesn't validate certificates by default 17 November 2013, 14:42:58 UTC
be1d3c1 Issue #19606: Use specific asserts in cookielib tests. 17 November 2013, 11:47:02 UTC
ca626b1 Issue #19607: Use specific asserts in weakref tests. 17 November 2013, 11:20:50 UTC
1438b98 Issue #19605: Use specific asserts in datetime tests 17 November 2013, 11:03:21 UTC
3dbbef9 Fix merge error in issue #19602. 17 November 2013, 10:49:28 UTC
ae75c83 Merge heads 17 November 2013, 10:31:29 UTC
e3c6136 #19238: fix typo in documentation. 17 November 2013, 00:47:12 UTC
843ef75 Issue #19604: Use specific asserts in array tests. 16 November 2013, 22:44:57 UTC
3f2aade Issue #19602: Use specific asserts in tkinter tests. 16 November 2013, 22:43:03 UTC
3c1198d Issue #19601: Use specific asserts in sqlite3 tests. 16 November 2013, 22:39:43 UTC
25a23ef Issue #19600: Use specific asserts in distutils tests. 16 November 2013, 22:29:27 UTC
9788e86 Issue #19594: Use specific asserts in unittest tests. 16 November 2013, 22:15:09 UTC
52bbeac Issue #19591: Use specific asserts in ctype tests. 16 November 2013, 22:06:02 UTC
1153757 Issue #19590: Use specific asserts in email tests. 16 November 2013, 10:56:05 UTC
91bf058 Issue #12853: Correct NameError in distutils upload command. 16 November 2013, 01:08:22 UTC
6afafc7 Issue #19504: Used American spelling for 'customize'. 15 November 2013, 20:54:15 UTC
47fe468 Issue #19523: Closed FileHandler leak which occurred when delay was set. 15 November 2013, 20:39:33 UTC
0a89b15 Issue #19592: Use specific asserts in lib2to3 tests. 14 November 2013, 21:49:14 UTC
01bdeec a post-2.7.6 world 10 November 2013, 07:47:17 UTC
086840a merge 2.7.6 release branch 10 November 2013, 07:46:48 UTC
b70ea07 Added tag v2.7.6 for changeset 3a1db0d2747e 10 November 2013, 07:36:35 UTC
2785195 2.7.6 final 10 November 2013, 07:36:30 UTC
c47d723 Issue #1575020: Fixed support of 24-bit wave files on big-endian platforms. 09 November 2013, 21:09:44 UTC
f87854e Fix Tkinter tests on Tk 8.5 with patchlevel < 8.5.11 (issue #19085). 09 November 2013, 19:15:26 UTC
back to top