Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Issue 3892 again. The bsddb3 replication test still fails randomly. | R. David Murray | 2010-03-01 | 1 | -18/+20 | |
| | | | | | | | 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. | |||||
* | Fix test to be skipped on windows. | Gregory P. Smith | 2010-03-01 | 1 | -4/+2 | |
| | ||||||
* | Fixes issue #7999: os.setreuid() and os.setregid() would refuse to accept | Gregory P. Smith | 2010-03-01 | 3 | -6/+25 | |
| | | | | a -1 parameter on some platforms such as OS X. | |||||
* | Adds c_ssize_t to ctypes. issue 6729. | Gregory P. Smith | 2010-03-01 | 4 | -1/+20 | |
| | ||||||
* | Cleanup the test added in r78517 based on Ezio Melotti's feedback. | Gregory P. Smith | 2010-03-01 | 1 | -8/+4 | |
| | ||||||
* | Fix the new test on windows (skip it, its posix only) | Gregory P. Smith | 2010-03-01 | 1 | -0/+1 | |
| | ||||||
* | Fix for r78527. It left out updating forkpty. | Gregory P. Smith | 2010-03-01 | 1 | -4/+7 | |
| | ||||||
* | Adds the hashlib.algorithms attribute. See issue7418. | Gregory P. Smith | 2010-03-01 | 3 | -1/+17 | |
| | ||||||
* | Issue #7242: On Solaris 9 and earlier calling os.fork() from within a | Gregory P. Smith | 2010-03-01 | 4 | -15/+72 | |
| | | | | | thread could raise an incorrect RuntimeError about not holding the import lock. The import lock is now reinitialized after fork. | |||||
* | Issue #1068268: The subprocess module now handles EINTR in internal | Gregory P. Smith | 2010-03-01 | 3 | -4/+38 | |
| | | | | os.waitpid and os.read system calls where appropriate. | |||||
* | #8030: more docstring fix for builtin types. | Ezio Melotti | 2010-02-28 | 3 | -7/+7 | |
| | ||||||
* | Issue #7481: When a threading.Thread failed to start it would leave the | Gregory P. Smith | 2010-02-28 | 3 | -1/+28 | |
| | | | | instance stuck in initial state and present in threading.enumerate(). | |||||
* | The set types can also be called without arguments. | Georg Brandl | 2010-02-28 | 1 | -2/+4 | |
| | ||||||
* | #8030: make builtin type docstrings more consistent: use "iterable" instead ↵ | Georg Brandl | 2010-02-28 | 3 | -5/+5 | |
| | | | | of "seq(uence)", use "new" to show that set() always returns a new object. | |||||
* | Pep8ify test names in the examples. | Ezio Melotti | 2010-02-28 | 1 | -17/+17 | |
| | ||||||
* | Fix an oversight in r78508: p.wait() should be compared to 0 | Florent Xicluna | 2010-02-27 | 1 | -4/+4 | |
| | ||||||
* | Clean test_subprocess: use assertRaises, skipIf, skipUnless helpers and a ↵ | Florent Xicluna | 2010-02-27 | 1 | -318/+299 | |
| | | | | custom helper assertStderrEqual. | |||||
* | #7793: Fix RuntimeError when running "regrtest -R" for multibyte codecs. | Florent Xicluna | 2010-02-27 | 1 | -18/+3 | |
| | ||||||
* | Link to http://www.python.org/dev/workflow/ from bugs page. | Georg Brandl | 2010-02-27 | 1 | -5/+5 | |
| | ||||||
* | Fix missing parenthesis. | Ezio Melotti | 2010-02-27 | 1 | -1/+1 | |
| | ||||||
* | Issue #1729305: Fix doctest to handle encode error with "backslashreplace". ↵ | Florent Xicluna | 2010-02-27 | 3 | -3/+55 | |
| | | | | It fixes #7667 too. | |||||
* | Add a test for normpath to test_macpath. | Ezio Melotti | 2010-02-27 | 1 | -0/+6 | |
| | ||||||
* | Add entry for issue #691291. | Florent Xicluna | 2010-02-27 | 1 | -0/+3 | |
| | ||||||
* | run autoconf | Benjamin Peterson | 2010-02-27 | 1 | -1/+4 | |
| | ||||||
* | Show an error when the value passed to --enable-unicode is not ucs2 or ucs4 ↵ | Ezio Melotti | 2010-02-27 | 1 | -0/+1 | |
| | | | | (lowercase). | |||||
* | typo: __next__ -> next | Ezio Melotti | 2010-02-26 | 1 | -1/+1 | |
| | ||||||
* | #7407: specify default maxsize value; patch by Floris Bruynooghe | Andrew M. Kuchling | 2010-02-26 | 1 | -3/+3 | |
| | ||||||
* | #691291: codecs.open() should not convert end of lines on reading and writing. | Florent Xicluna | 2010-02-26 | 2 | -4/+24 | |
| | ||||||
* | Fixing issue5475 : urllib2.getproxies not documented | Senthil Kumaran | 2010-02-26 | 1 | -0/+9 | |
| | ||||||
* | Add Florent Xicluna. | Martin v. Löwis | 2010-02-25 | 1 | -0/+3 | |
| | ||||||
* | #7649: "u'%c' % char" now behaves like "u'%s' % char" and raises a ↵ | Ezio Melotti | 2010-02-25 | 2 | -11/+21 | |
| | | | | UnicodeDecodeError if 'char' is a byte string that can't be decoded using the default encoding. | |||||
* | Issue #7928: Document str.format element_index better. | Eric Smith | 2010-02-25 | 1 | -1/+2 | |
| | ||||||
* | Issue #5965: Add documentation for parts of format specification language. | Eric Smith | 2010-02-25 | 1 | -3/+20 | |
| | ||||||
* | Fix for Issue7540 ; urllib2 will raise a TypeError when you try to add_data to | Senthil Kumaran | 2010-02-24 | 2 | -0/+4 | |
| | | | | a existing req object already having data. | |||||
* | Add some notes about Tools/scripts/serve.py. | Dirkjan Ochtman | 2010-02-24 | 2 | -0/+7 | |
| | ||||||
* | typos | Ezio Melotti | 2010-02-24 | 1 | -2/+2 | |
| | ||||||
* | Fix for Issue3819 - urllib2 sends Basic auth across redirects | Senthil Kumaran | 2010-02-24 | 2 | -2/+3 | |
| | ||||||
* | Issue #7309: Unchecked pointer access when converting UnicodeEncodeError, ↵ | Eric Smith | 2010-02-24 | 3 | -36/+119 | |
| | | | | UnicodeDecodeError, and UnicodeTranslateError to strings. | |||||
* | Issue #7427: improve the representation of httplib.BadStatusLine exceptions. | Dirkjan Ochtman | 2010-02-24 | 3 | -0/+8 | |
| | ||||||
* | Issue #8004: add a serve target to the Doc Makefile. | Dirkjan Ochtman | 2010-02-24 | 2 | -0/+29 | |
| | ||||||
* | Issue #7733: add explicit reference in asyncore docs. | Dirkjan Ochtman | 2010-02-24 | 1 | -1/+2 | |
| | ||||||
* | Issue 7975: in python 2.6 bsddb.dbshelve switched from DictMixin to | R. David Murray | 2010-02-24 | 2 | -15/+8 | |
| | | | | | | | 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. | |||||
* | Merged revisions 78407 via svnmerge from | Benjamin Peterson | 2010-02-24 | 1 | -15/+13 | |
| | | | | | | | | | | 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 ........ | |||||
* | The primary copy of lib2to3 is not trunk, so the lib2to3 change | R. David Murray | 2010-02-24 | 1 | -3/+0 | |
| | | | | should not have been included in the -OO patch, back it out. | |||||
* | Record that Dino Viehland got commit privs. | Brett Cannon | 2010-02-24 | 1 | -0/+3 | |
| | ||||||
* | #4852: Remove dead code in every thread implementation, unused for many years. | Amaury Forgeot d'Arc | 2010-02-23 | 16 | -575/+28 | |
| | ||||||
* | Issue #7649: Fix u'%c' % char for character in range 0x80..0xFF | Victor Stinner | 2010-02-23 | 3 | -2/+26 | |
| | | | | => raise an UnicodeDecodeError. Patch written by Ezio Melotti. | |||||
* | #6544: fix refleak in kqueue, occurring in certain error conditions. | Georg Brandl | 2010-02-23 | 2 | -16/+18 | |
| | ||||||
* | #8000: fix deprecated directive. What a shame to lose that glorious issue ↵ | Georg Brandl | 2010-02-23 | 1 | -1/+1 | |
| | | | | number to such a minor bug :) | |||||
* | Fix #1537721: add writeheader() method to csv.DictWriter. | Dirkjan Ochtman | 2010-02-23 | 4 | -0/+20 | |
| | | | | Reviewed by skip.montanaro and thomas.wouters. |