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

sort by:
Revision Author Date Message Commit Date
71fb87e Issue #7544: Preallocate thread memory before creating the thread to avoid a fatal error in low memory condition. 03 March 2010, 23:20:25 UTC
2379bb6 Issue #3299: fix curses.panel.new_panel() error handler, replace PyObject_DEL() by Py_DECREF() to avoid a crash in pydebug mode. Use po->wo==NULL to detect than the panel is in the lop list or not. 03 March 2010, 21:53:41 UTC
ac80c15 rephrase 03 March 2010, 21:28:25 UTC
6458104 Issue #7232: Add support for the context manager protocol to the TarFile class. 03 March 2010, 11:55:48 UTC
8af970a Revert a nonexistent docstring typo, r42805. 03 March 2010, 11:49:53 UTC
c516d19 fix Sphinx warnings 03 March 2010, 02:04:24 UTC
90c5802 edit for style 03 March 2010, 01:55:09 UTC
c951d56 Issue #3299: fix thread.allocate_lock() error handler, replace PyObject_Del() by Py_DECREF() to fix a crash in pydebug mode. 03 March 2010, 00:43:44 UTC
9e220be Fix wording. 02 March 2010, 23:56:38 UTC
842b95b plug ref leaks 02 March 2010, 23:43:47 UTC
d23d393 Issue #7820: The parser tokenizer restores all bytes in the right if the BOM check fails. Fix an assertion in pydebug mode. 02 March 2010, 23:20:02 UTC
0e717ad remove cross-version compatibility code 02 March 2010, 23:02:02 UTC
bd56722 remove code to avoid BaseException.message bug 02 March 2010, 22:58:01 UTC
3f75cc5 Issue #2973: Fix gcc warning on the 2nd argument of ASN1_item_d2i() and method->d2i(): OpenSSL API changed in OpenSSL 0.9.6m. Patch written by Daniel Black. 02 March 2010, 22:44:42 UTC
c0a9d41 Test test_pep277 is only relevant for Unicode-friendly filesystems. 02 March 2010, 22:34:11 UTC
fa31eaa convert deprecated fail* methods to assert* variants 02 March 2010, 22:26:25 UTC
e4d90c2 use test_main() in __main__ section 02 March 2010, 22:24:30 UTC
4aa8a13 prevent warning filter adjustment from altering other tests 02 March 2010, 22:23:33 UTC
036fae3 enable running of argparse tests and fix two that failed in the new environment 02 March 2010, 22:20:10 UTC
d2decd9 Add some x-refs. 02 March 2010, 22:17:38 UTC
5e32fe5 remove another coding cookie 02 March 2010, 22:08:40 UTC
a39e966 set svn:eol-style 02 March 2010, 22:05:59 UTC
c1df546 remove coding cookie as mandated by PEP 8 02 March 2010, 22:03:03 UTC
2db61fb Tentatively enable test_pep277 on all platforms. 02 March 2010, 21:34:45 UTC
d8472a4 Refactor test_dict using assertRaises. 02 March 2010, 16:00:00 UTC
abe6331 Link correction in documentation. 02 March 2010, 14:22:15 UTC
ab21f75 Add an item 02 March 2010, 13:55:33 UTC
e9330e7 Initial commit of the argparse library, based on argparse 1.1. Docs still need some updating to make getopt and optparse match the wording promised in the PEP. There are also probably a number of :class:ArgumentParser etc. links that could be added to the argparse documentation. 02 March 2010, 08:38:09 UTC
41162eb remove CVS id 01 March 2010, 23:25:13 UTC
08a8fb3 Manually copy patch for bug 7250 from the release26-maint branch. I suck because I did this in the wrong order and couldn't smack svnmerge into submission. 01 March 2010, 21:46:51 UTC
e7901c5 #7808: Fix reference leaks in _bsddb and related tests. 01 March 2010, 20:45:01 UTC
fe6f07c #7637: avoid repeated-concatenation antipattern in example 01 March 2010, 20:11:57 UTC
66dab17 #7191: describe more details of wbits parameter 01 March 2010, 19:51:43 UTC
f8af7b4 #7637: update discussion of minidom.unlink() and garbage collection 01 March 2010, 19:45:21 UTC
343faca Issue 3892 again. The bsddb3 replication test still fails randomly. Since this module is unmaintained in the library and gone in py3k, this patch skips the remainder of the replication test if a second timeout occurs, as it randomly does. This should improve buildbot stability. 01 March 2010, 19:14:16 UTC
7512a90 Fix test to be skipped on windows. 01 March 2010, 06:01:02 UTC
6a65f85 Fixes issue #7999: os.setreuid() and os.setregid() would refuse to accept a -1 parameter on some platforms such as OS X. 01 March 2010, 05:43:43 UTC
3c699d3 Adds c_ssize_t to ctypes. issue 6729. 01 March 2010, 04:56:12 UTC
3c1586a Cleanup the test added in r78517 based on Ezio Melotti's feedback. 01 March 2010, 03:09:19 UTC
c1baf4a Fix the new test on windows (skip it, its posix only) 01 March 2010, 02:53:24 UTC
4b86236 Fix for r78527. It left out updating forkpty. 01 March 2010, 02:31:33 UTC
e6390a1 Adds the hashlib.algorithms attribute. See issue7418. 01 March 2010, 02:01:47 UTC
9e5d132 Issue #7242: On Solaris 9 and earlier calling os.fork() from within a thread could raise an incorrect RuntimeError about not holding the import lock. The import lock is now reinitialized after fork. 01 March 2010, 01:22:39 UTC
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
back to top