summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* removed debugging codeTarek Ziadé2010-02-231-4/+1
|
* Issue 6292: for the moment at least, the test suite passes if runR. David Murray2010-02-2319-41/+194
| | | | | | with -OO. Tests requiring docstrings are skipped. Patch by Brian Curtin, thanks to Matias Torchinsky for helping review and improve the patch.
* Issue #6902: Fix problem with built-in types format incorrectly with 0 padding.Eric Smith2010-02-233-4/+42
|
* Support for old TestResult object (unittest) with warnings when using ↵Michael Foord2010-02-223-8/+77
| | | | unsupported features.
* #7706: add include guards where they're missing; required for Windows CEAndrew M. Kuchling2010-02-222-1/+12
|
* #7706: DONT_HAVE_ERRNO_H is no longer defined by configure (after rev.46819).Andrew M. Kuchling2010-02-221-1/+1
|
* #2560: remove an unnecessary 'for' loop from my_fgets() in Parser/myreadline.c.Andrew M. Kuchling2010-02-222-48/+48
| | | | | | | | | | | 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.
* * fix issue#7476Jack Diederich2010-02-223-0/+6
|
* Remove Tools/modulator, a reference to it in the docs, and a screenshot of it.Andrew M. Kuchling2010-02-2232-1456/+1
| | | | | | (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.)
* fixes issue #1522237, bad init check in _threading_localJack Diederich2010-02-222-1/+16
|
* #7627: MH.remove() would fail if the MH mailbox was locked;Andrew M. Kuchling2010-02-222-10/+9
| | | | it would call _unlock_file() and pass it a closed file object. Noted by Rob Austein.
* Fix comment typoAndrew M. Kuchling2010-02-221-1/+1
|
* Issue #7988: Fix default alignment to be right aligned for ↵Eric Smith2010-02-223-10/+45
| | | | complex.__format__. Now it matches other numeric types.
* fixes issue #7530, serve_forever()Jack Diederich2010-02-221-5/+1
|
* Note granting of commit privileges to Larry HastingsAndrew M. Kuchling2010-02-221-0/+3
|
* #7482: clarify error message in case of division by zero of float and ↵Ezio Melotti2010-02-222-4/+4
| | | | complex numbers.
* #7597: curses.use_env() can be called before initscr(). Noted by Kan-Ru ChenAndrew M. Kuchling2010-02-221-2/+0
|
* Clarify description of three-argument pow for Decimal types: the exponent ↵Mark Dickinson2010-02-221-3/+6
| | | | of the result is always 0.
* #6414: clarify description of processor endianness.Andrew M. Kuchling2010-02-221-3/+5
| | | | Text by Alexey Shamrin; I changed 'DEC Alpha' to the more relevant 'Intel Itanium'.
* #7794: describe 2.6 support for executing directories and zip archivesAndrew M. Kuchling2010-02-221-0/+7
|
* Fix Issue7172 - BaseHTTPServer.BaseHTTPRequestHandler.responses[405] - changingSenthil Kumaran2010-02-221-1/+1
| | | | server to resource in the 405 response msg.
* #7076: mention SystemRandom class near start of the module docs; reword ↵Andrew M. Kuchling2010-02-221-1/+5
| | | | change description for clarity. Noted by Shawn Ligocki.
* Re-wordAndrew M. Kuchling2010-02-221-3/+3
|
* Silence UnicodeWarning in crazy unittest test.Michael Foord2010-02-211-4/+7
|
* Reduce number of random tests in test_strtod, to avoid hogging buildbot time.Mark Dickinson2010-02-211-36/+30
|
* Issue #7384: skip test_curses on FreeBSD, in order to allow other buildbot ↵Mark Dickinson2010-02-211-0/+6
| | | | tests to complete.
* Issue #5211: Fix complex type to avoid implicit calls toMark Dickinson2010-02-214-30/+109
| | | | complex.__coerce__. Thanks Meador Inge for the patch.
* Issue 7970: When email.Parser.Parser parses a MIME message of typeR. David Murray2010-02-214-2/+48
| | | | | | | | | | 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.
* skip tests with a non-ascii cwd when the file system encoding is asciiEzio Melotti2010-02-204-17/+32
|
* Fix for Issue7751: urllib.urlopen("///C|/foo/bar/spam.foo")Senthil Kumaran2010-02-202-2/+6
|
* Remove e assertIs definitions and use correct assert* methods.Ezio Melotti2010-02-206-45/+28
|
* #3426: os.path.abspath now returns unicode when its arg is unicode.Ezio Melotti2010-02-208-6/+57
|
* logging: Documented warnings module integration.Vinay Sajip2010-02-191-0/+22
|
* #7967: PyXML is no more.Georg Brandl2010-02-191-7/+0
|
* Fix for Issue7904. urlparse.urlsplit to handle schemes in the way defined by ↵Senthil Kumaran2010-02-192-2/+12
| | | | RFC3986
* - apply patch from issue 7005Fred Drake2010-02-193-42/+147
| | | | - add corresponding documentation
* Fix unittest.TestCase.assertDictContainsSubset so it can't die with unicode ↵Michael Foord2010-02-182-9/+7
| | | | issues when constructing failure messages. Issue 7956
* unittest.TestCase uses safe_repr for producing failure messages. Partial fix ↵Michael Foord2010-02-183-46/+72
| | | | for issue 7956
* Doctest fixes for decimal.py: add an integer-argument doctest for ↵Mark Dickinson2010-02-181-18/+20
| | | | logical_invert; don't use integer literals with a leading zero.
* Issue #7633: Context method in the decimal module (with the exceptionMark Dickinson2010-02-185-20/+790
| | | | | | 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.
* Add various itemsAndrew M. Kuchling2010-02-181-6/+47
|
* Move bsddb47 macros before their use, to make VS 2010 happy.Martin v. Löwis2010-02-181-8/+8
|
* Stop providing crtassem.h symbols when compiling withMartin v. Löwis2010-02-182-1/+6
| | | | | Visual Studio 2010, as msvcr100.dll is not a platform assembly anymore.
* #7941: fix error messageEzio Melotti2010-02-161-1/+1
|
* #7930: fix stripidEzio Melotti2010-02-162-3/+14
|
* Make the references to Popen in the description of CallR. David Murray2010-02-161-2/+2
| | | | and check_call into links.
* Issue #7903: Define _BSD_SOURCE through OpenBSD 4.9.Martin v. Löwis2010-02-153-6/+10
|
* Remove incorrect apostrophe.Eric Smith2010-02-151-1/+1
|
* Issue #3920: Define _BSD_SOURCE on OpenBSD 4.4.Martin v. Löwis2010-02-153-16/+37
|
* Silence more 'comparison between signed and unsigned' warnings.Mark Dickinson2010-02-142-6/+6
|