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

sort by:
Revision Author Date Message Commit Date
cce211f Issue #1068268: The subprocess module now handles EINTR in internal os.waitpid and os.read system calls where appropriate. 01 March 2010, 00:05:08 UTC
fb50112 #8030: more docstring fix for builtin types. 28 February 2010, 23:59:00 UTC
613c7a5 Issue #7481: When a threading.Thread failed to start it would leave the instance stuck in initial state and present in threading.enumerate(). 28 February 2010, 18:36:09 UTC
b36e63a The set types can also be called without arguments. 28 February 2010, 18:26:37 UTC
bca1169 #8030: make builtin type docstrings more consistent: use "iterable" instead of "seq(uence)", use "new" to show that set() always returns a new object. 28 February 2010, 18:19:17 UTC
68beef6 Pep8ify test names in the examples. 28 February 2010, 03:11:07 UTC
78fd521 Fix an oversight in r78508: p.wait() should be compared to 0 27 February 2010, 21:15:27 UTC
98e3fc3 Clean test_subprocess: use assertRaises, skipIf, skipUnless helpers and a custom helper assertStderrEqual. 27 February 2010, 19:20:50 UTC
be8c2b1 #7793: Fix RuntimeError when running "regrtest -R" for multibyte codecs. 27 February 2010, 15:10:19 UTC
37212ed Link to http://www.python.org/dev/workflow/ from bugs page. 27 February 2010, 14:58:08 UTC
8dd547f Fix missing parenthesis. 27 February 2010, 13:50:35 UTC
2a903b2 Issue #1729305: Fix doctest to handle encode error with "backslashreplace". It fixes #7667 too. 27 February 2010, 13:31:23 UTC
0263da5 Add a test for normpath to test_macpath. 27 February 2010, 12:42:52 UTC
82aa01f Add entry for issue #691291. 27 February 2010, 11:19:18 UTC
8b65054 run autoconf 27 February 2010, 00:11:42 UTC
5820efb Show an error when the value passed to --enable-unicode is not ucs2 or ucs4 (lowercase). 27 February 2010, 00:05:42 UTC
84424f1 typo: __next__ -> next 26 February 2010, 23:27:06 UTC
9aeeffa #7407: specify default maxsize value; patch by Floris Bruynooghe 26 February 2010, 13:22:50 UTC
f4b6186 #691291: codecs.open() should not convert end of lines on reading and writing. 26 February 2010, 10:40:58 UTC
c994186 Fixing issue5475 : urllib2.getproxies not documented 26 February 2010, 00:47:05 UTC
99bf01b Add Florent Xicluna. 25 February 2010, 20:42:40 UTC
3212515 #7649: "u'%c' % char" now behaves like "u'%s' % char" and raises a UnicodeDecodeError if 'char' is a byte string that can't be decoded using the default encoding. 25 February 2010, 17:36:04 UTC
271b7e1 Issue #7928: Document str.format element_index better. 25 February 2010, 14:26:33 UTC
de8b2ac Issue #5965: Add documentation for parts of format specification language. 25 February 2010, 14:14:35 UTC
e9a7808 Fix for Issue7540 ; urllib2 will raise a TypeError when you try to add_data to a existing req object already having data. 24 February 2010, 20:55:31 UTC
60677a7 Add some notes about Tools/scripts/serve.py. 24 February 2010, 17:06:31 UTC
2076666 typos 24 February 2010, 16:49:56 UTC
8526adf Fix for Issue3819 - urllib2 sends Basic auth across redirects 24 February 2010, 16:45:46 UTC
2d9856d Issue #7309: Unchecked pointer access when converting UnicodeEncodeError, UnicodeDecodeError, and UnicodeTranslateError to strings. 24 February 2010, 14:15:36 UTC
ebc73dc Issue #7427: improve the representation of httplib.BadStatusLine exceptions. 24 February 2010, 04:49:00 UTC
e4c74e1 Issue #8004: add a serve target to the Doc Makefile. 24 February 2010, 04:12:11 UTC
2d78070 Issue #7733: add explicit reference in asyncore docs. 24 February 2010, 04:00:52 UTC
48605be Issue 7975: in python 2.6 bsddb.dbshelve switched from DictMixin to MutableMapping, and thereby lost functionality because the replacement functionality was implemented incorrectly or incompletely). Since bsddb isn't in py3k, this patch just goes back to using DictMixin in order to correct the regression. 24 February 2010, 02:31:27 UTC
300c5cc Merged revisions 78407 via svnmerge from svn+ssh://pythondev@svn.python.org/sandbox/trunk/2to3/lib2to3 ........ r78407 | benjamin.peterson | 2010-02-23 20:21:34 -0600 (Tue, 23 Feb 2010) | 1 line rewrite test to not rely on __doc__ being present ........ 24 February 2010, 02:24:35 UTC
effb24b The primary copy of lib2to3 is not trunk, so the lib2to3 change should not have been included in the -OO patch, back it out. 24 February 2010, 02:08:28 UTC
1ffccb0 Record that Dino Viehland got commit privs. 24 February 2010, 01:38:04 UTC
adfc80b #4852: Remove dead code in every thread implementation, unused for many years. 23 February 2010, 23:19:39 UTC
f20f9c2 Issue #7649: Fix u'%c' % char for character in range 0x80..0xFF => raise an UnicodeDecodeError. Patch written by Ezio Melotti. 23 February 2010, 23:16:07 UTC
ea370a9 #6544: fix refleak in kqueue, occurring in certain error conditions. 23 February 2010, 21:48:57 UTC
6ae19ad #8000: fix deprecated directive. What a shame to lose that glorious issue number to such a minor bug :) 23 February 2010, 21:33:17 UTC
8614817 Fix #1537721: add writeheader() method to csv.DictWriter. Reviewed by skip.montanaro and thomas.wouters. 23 February 2010, 21:09:52 UTC
92bd059 ctypes CThunkObject was not registered correctly with the cycle garbage collector, leading to possible leaks when using callback functions. 23 February 2010, 20:11:44 UTC
429a74a issue#6442 use in operator instead of has_key 23 February 2010, 19:34:06 UTC
1605b33 fixup markup error 23 February 2010, 17:23:30 UTC
d99ef9a unittest.TestResult can now be used with the TextTestRunner. TextTestRunner compatible with old TestResult objects. 23 February 2010, 17:00:53 UTC
cf80f04 Fix spacing nit. Thanks Eric Smith for the public humiliation. 23 February 2010, 13:06:50 UTC
8ee9187 Make global variable overflowok into a keyword argument; this fixes a failure when running ./python -m test.regrtest -R 3:2: test_format 23 February 2010, 12:53:52 UTC
b8708a2 fixed #5801: removed spurious empty lines in wsgiref 23 February 2010, 05:53:05 UTC
2900c44 completed the __all__ list and changed the module doctest 23 February 2010, 05:36:41 UTC
1e069ee added a note on shutil new APIs 23 February 2010, 05:20:22 UTC
48cc8dc added make_archive (and secondary APIs) to shutil 23 February 2010, 05:16:41 UTC
b0aad6c removed debugging code 23 February 2010, 04:57:05 UTC
f28fd24 Issue 6292: for the moment at least, the test suite passes if run with -OO. Tests requiring docstrings are skipped. Patch by Brian Curtin, thanks to Matias Torchinsky for helping review and improve the patch. 23 February 2010, 00:24:49 UTC
87bcb24 Issue #6902: Fix problem with built-in types format incorrectly with 0 padding. 23 February 2010, 00:11:16 UTC
ae3db0a Support for old TestResult object (unittest) with warnings when using unsupported features. 22 February 2010, 23:28:32 UTC
4b81bc7 #7706: add include guards where they're missing; required for Windows CE 22 February 2010, 23:12:00 UTC
00b6a5c #7706: DONT_HAVE_ERRNO_H is no longer defined by configure (after rev.46819). 22 February 2010, 23:10:52 UTC
b64d613 #2560: remove an unnecessary 'for' loop from my_fgets() in Parser/myreadline.c. Noted by Joseph Armbruster; patch by Jessica McKellar. The original code was 'for (;;) {...}', where ... ended with a 'return -2' statement and did not contain a 'break' or 'continue' statement. Therefore, the body of the loop is always executed once. Once upon a time there was a 'continue' in the loop, but it was removed in rev36346, committed by mwh on Wed Jul 7 17:44:12 2004. 22 February 2010, 22:48:41 UTC
5cac46d * fix issue#7476 22 February 2010, 21:27:38 UTC
f2055ae Remove Tools/modulator, a reference to it in the docs, and a screenshot of it. (I asked the BDFL first, and he approved removing it. The last actual bugfix to Tools/modulator was in 2001; since then all changes have been search-and-replace: string methods, whitespace fixes, etc.) 22 February 2010, 21:04:02 UTC
1ce6136 fixes issue #1522237, bad init check in _threading_local 22 February 2010, 19:55:22 UTC
b72b0eb #7627: MH.remove() would fail if the MH mailbox was locked; it would call _unlock_file() and pass it a closed file object. Noted by Rob Austein. 22 February 2010, 18:42:07 UTC
72aae73 Fix comment typo 22 February 2010, 18:38:23 UTC
f32d4ac Issue #7988: Fix default alignment to be right aligned for complex.__format__. Now it matches other numeric types. 22 February 2010, 18:33:47 UTC
8f48f4c fixes issue #7530, serve_forever() 22 February 2010, 18:17:16 UTC
83fddec Note granting of commit privileges to Larry Hastings 22 February 2010, 17:21:54 UTC
bce3e17 #7482: clarify error message in case of division by zero of float and complex numbers. 22 February 2010, 16:30:58 UTC
38c1236 #7597: curses.use_env() can be called before initscr(). Noted by Kan-Ru Chen 22 February 2010, 16:26:47 UTC
f5be4e6 Clarify description of three-argument pow for Decimal types: the exponent of the result is always 0. 22 February 2010, 15:40:28 UTC
dfd0148 #6414: clarify description of processor endianness. Text by Alexey Shamrin; I changed 'DEC Alpha' to the more relevant 'Intel Itanium'. 22 February 2010, 15:13:17 UTC
6b2bd05 #7794: describe 2.6 support for executing directories and zip archives 22 February 2010, 14:53:17 UTC
ee5546c Fix Issue7172 - BaseHTTPServer.BaseHTTPRequestHandler.responses[405] - changing server to resource in the 405 response msg. 22 February 2010, 10:55:08 UTC
25d6ddd #7076: mention SystemRandom class near start of the module docs; reword change description for clarity. Noted by Shawn Ligocki. 22 February 2010, 02:29:10 UTC
c7337b8 Re-word 22 February 2010, 02:08:45 UTC
2f67756 Silence UnicodeWarning in crazy unittest test. 21 February 2010, 14:48:59 UTC
92cb4a8 Reduce number of random tests in test_strtod, to avoid hogging buildbot time. 21 February 2010, 14:42:27 UTC
45ad801 Issue #7384: skip test_curses on FreeBSD, in order to allow other buildbot tests to complete. 21 February 2010, 13:37:53 UTC
82b34c5 Issue #5211: Fix complex type to avoid implicit calls to complex.__coerce__. Thanks Meador Inge for the patch. 21 February 2010, 12:57:35 UTC
51f1204 Issue 7970: When email.Parser.Parser parses a MIME message of type message/rfc822 it turns it into an object whose body consists of a list containing a single Message object. HeaderParser, on the other hand, just copies the body as a string. Generator.flatten has a special handler for the message mime type that expected the body to be the one item list. This fails if the message was parsed by HeaderParser. So we now check to see if the body is a string first, and if so just we just emit it. 21 February 2010, 04:23:00 UTC
9e9af21 skip tests with a non-ascii cwd when the file system encoding is ascii 20 February 2010, 22:34:21 UTC
18d5a69 Fix for Issue7751: urllib.urlopen("///C|/foo/bar/spam.foo") 20 February 2010, 22:05:34 UTC
e3467d5 Remove e assertIs definitions and use correct assert* methods. 20 February 2010, 09:40:07 UTC
4cc80ca #3426: os.path.abspath now returns unicode when its arg is unicode. 20 February 2010, 08:09:39 UTC
61afd26 logging: Documented warnings module integration. 19 February 2010, 23:53:17 UTC
74cbd66 #7967: PyXML is no more. 19 February 2010, 19:36:08 UTC
4e78de8 Fix for Issue7904. urlparse.urlsplit to handle schemes in the way defined by RFC3986 19 February 2010, 07:32:48 UTC
cc43b56 - apply patch from issue 7005 - add corresponding documentation 19 February 2010, 05:24:30 UTC
c2294dd Fix unittest.TestCase.assertDictContainsSubset so it can't die with unicode issues when constructing failure messages. Issue 7956 18 February 2010, 21:37:07 UTC
225a099 unittest.TestCase uses safe_repr for producing failure messages. Partial fix for issue 7956 18 February 2010, 20:30:09 UTC
456e165 Doctest fixes for decimal.py: add an integer-argument doctest for logical_invert; don't use integer literals with a leading zero. 18 February 2010, 14:45:33 UTC
6d8effb Issue #7633: Context method in the decimal module (with the exception of the 'canonical' and 'is_canonical' methods) now consistently accept integer arguments wherever a Decimal instance is accepted. Thanks Juan José Conti for the patch. 18 February 2010, 14:27:02 UTC
e41e4db Add various items 18 February 2010, 14:16:48 UTC
c0de8bb Move bsddb47 macros before their use, to make VS 2010 happy. 18 February 2010, 12:45:45 UTC
413fabc Stop providing crtassem.h symbols when compiling with Visual Studio 2010, as msvcr100.dll is not a platform assembly anymore. 18 February 2010, 09:22:20 UTC
6f90303 #7941: fix error message 16 February 2010, 23:58:49 UTC
e511fc7 #7930: fix stripid 16 February 2010, 23:26:09 UTC
6dfe662 Make the references to Popen in the description of Call and check_call into links. 16 February 2010, 17:55:26 UTC
7875ef6 Issue #7903: Define _BSD_SOURCE through OpenBSD 4.9. 15 February 2010, 21:41:12 UTC
cef3409 Remove incorrect apostrophe. 15 February 2010, 11:55:38 UTC
5e2dd86 Issue #3920: Define _BSD_SOURCE on OpenBSD 4.4. 15 February 2010, 08:32:00 UTC
back to top