Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | removed debugging code | Tarek Ziadé | 2010-02-23 | 1 | -4/+1 |
| | |||||
* | Issue 6292: for the moment at least, the test suite passes if run | R. David Murray | 2010-02-23 | 19 | -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 Smith | 2010-02-23 | 3 | -4/+42 |
| | |||||
* | Support for old TestResult object (unittest) with warnings when using ↵ | Michael Foord | 2010-02-22 | 3 | -8/+77 |
| | | | | unsupported features. | ||||
* | #7706: add include guards where they're missing; required for Windows CE | Andrew M. Kuchling | 2010-02-22 | 2 | -1/+12 |
| | |||||
* | #7706: DONT_HAVE_ERRNO_H is no longer defined by configure (after rev.46819). | Andrew M. Kuchling | 2010-02-22 | 1 | -1/+1 |
| | |||||
* | #2560: remove an unnecessary 'for' loop from my_fgets() in Parser/myreadline.c. | Andrew M. Kuchling | 2010-02-22 | 2 | -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#7476 | Jack Diederich | 2010-02-22 | 3 | -0/+6 |
| | |||||
* | Remove Tools/modulator, a reference to it in the docs, and a screenshot of it. | Andrew M. Kuchling | 2010-02-22 | 32 | -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_local | Jack Diederich | 2010-02-22 | 2 | -1/+16 |
| | |||||
* | #7627: MH.remove() would fail if the MH mailbox was locked; | Andrew M. Kuchling | 2010-02-22 | 2 | -10/+9 |
| | | | | it would call _unlock_file() and pass it a closed file object. Noted by Rob Austein. | ||||
* | Fix comment typo | Andrew M. Kuchling | 2010-02-22 | 1 | -1/+1 |
| | |||||
* | Issue #7988: Fix default alignment to be right aligned for ↵ | Eric Smith | 2010-02-22 | 3 | -10/+45 |
| | | | | complex.__format__. Now it matches other numeric types. | ||||
* | fixes issue #7530, serve_forever() | Jack Diederich | 2010-02-22 | 1 | -5/+1 |
| | |||||
* | Note granting of commit privileges to Larry Hastings | Andrew M. Kuchling | 2010-02-22 | 1 | -0/+3 |
| | |||||
* | #7482: clarify error message in case of division by zero of float and ↵ | Ezio Melotti | 2010-02-22 | 2 | -4/+4 |
| | | | | complex numbers. | ||||
* | #7597: curses.use_env() can be called before initscr(). Noted by Kan-Ru Chen | Andrew M. Kuchling | 2010-02-22 | 1 | -2/+0 |
| | |||||
* | Clarify description of three-argument pow for Decimal types: the exponent ↵ | Mark Dickinson | 2010-02-22 | 1 | -3/+6 |
| | | | | of the result is always 0. | ||||
* | #6414: clarify description of processor endianness. | Andrew M. Kuchling | 2010-02-22 | 1 | -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 archives | Andrew M. Kuchling | 2010-02-22 | 1 | -0/+7 |
| | |||||
* | Fix Issue7172 - BaseHTTPServer.BaseHTTPRequestHandler.responses[405] - changing | Senthil Kumaran | 2010-02-22 | 1 | -1/+1 |
| | | | | server to resource in the 405 response msg. | ||||
* | #7076: mention SystemRandom class near start of the module docs; reword ↵ | Andrew M. Kuchling | 2010-02-22 | 1 | -1/+5 |
| | | | | change description for clarity. Noted by Shawn Ligocki. | ||||
* | Re-word | Andrew M. Kuchling | 2010-02-22 | 1 | -3/+3 |
| | |||||
* | Silence UnicodeWarning in crazy unittest test. | Michael Foord | 2010-02-21 | 1 | -4/+7 |
| | |||||
* | Reduce number of random tests in test_strtod, to avoid hogging buildbot time. | Mark Dickinson | 2010-02-21 | 1 | -36/+30 |
| | |||||
* | Issue #7384: skip test_curses on FreeBSD, in order to allow other buildbot ↵ | Mark Dickinson | 2010-02-21 | 1 | -0/+6 |
| | | | | tests to complete. | ||||
* | Issue #5211: Fix complex type to avoid implicit calls to | Mark Dickinson | 2010-02-21 | 4 | -30/+109 |
| | | | | complex.__coerce__. Thanks Meador Inge for the patch. | ||||
* | Issue 7970: When email.Parser.Parser parses a MIME message of type | R. David Murray | 2010-02-21 | 4 | -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 ascii | Ezio Melotti | 2010-02-20 | 4 | -17/+32 |
| | |||||
* | Fix for Issue7751: urllib.urlopen("///C|/foo/bar/spam.foo") | Senthil Kumaran | 2010-02-20 | 2 | -2/+6 |
| | |||||
* | Remove e assertIs definitions and use correct assert* methods. | Ezio Melotti | 2010-02-20 | 6 | -45/+28 |
| | |||||
* | #3426: os.path.abspath now returns unicode when its arg is unicode. | Ezio Melotti | 2010-02-20 | 8 | -6/+57 |
| | |||||
* | logging: Documented warnings module integration. | Vinay Sajip | 2010-02-19 | 1 | -0/+22 |
| | |||||
* | #7967: PyXML is no more. | Georg Brandl | 2010-02-19 | 1 | -7/+0 |
| | |||||
* | Fix for Issue7904. urlparse.urlsplit to handle schemes in the way defined by ↵ | Senthil Kumaran | 2010-02-19 | 2 | -2/+12 |
| | | | | RFC3986 | ||||
* | - apply patch from issue 7005 | Fred Drake | 2010-02-19 | 3 | -42/+147 |
| | | | | - add corresponding documentation | ||||
* | Fix unittest.TestCase.assertDictContainsSubset so it can't die with unicode ↵ | Michael Foord | 2010-02-18 | 2 | -9/+7 |
| | | | | issues when constructing failure messages. Issue 7956 | ||||
* | unittest.TestCase uses safe_repr for producing failure messages. Partial fix ↵ | Michael Foord | 2010-02-18 | 3 | -46/+72 |
| | | | | for issue 7956 | ||||
* | Doctest fixes for decimal.py: add an integer-argument doctest for ↵ | Mark Dickinson | 2010-02-18 | 1 | -18/+20 |
| | | | | logical_invert; don't use integer literals with a leading zero. | ||||
* | Issue #7633: Context method in the decimal module (with the exception | Mark Dickinson | 2010-02-18 | 5 | -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 items | Andrew M. Kuchling | 2010-02-18 | 1 | -6/+47 |
| | |||||
* | Move bsddb47 macros before their use, to make VS 2010 happy. | Martin v. Löwis | 2010-02-18 | 1 | -8/+8 |
| | |||||
* | Stop providing crtassem.h symbols when compiling with | Martin v. Löwis | 2010-02-18 | 2 | -1/+6 |
| | | | | | Visual Studio 2010, as msvcr100.dll is not a platform assembly anymore. | ||||
* | #7941: fix error message | Ezio Melotti | 2010-02-16 | 1 | -1/+1 |
| | |||||
* | #7930: fix stripid | Ezio Melotti | 2010-02-16 | 2 | -3/+14 |
| | |||||
* | Make the references to Popen in the description of Call | R. David Murray | 2010-02-16 | 1 | -2/+2 |
| | | | | and check_call into links. | ||||
* | Issue #7903: Define _BSD_SOURCE through OpenBSD 4.9. | Martin v. Löwis | 2010-02-15 | 3 | -6/+10 |
| | |||||
* | Remove incorrect apostrophe. | Eric Smith | 2010-02-15 | 1 | -1/+1 |
| | |||||
* | Issue #3920: Define _BSD_SOURCE on OpenBSD 4.4. | Martin v. Löwis | 2010-02-15 | 3 | -16/+37 |
| | |||||
* | Silence more 'comparison between signed and unsigned' warnings. | Mark Dickinson | 2010-02-14 | 2 | -6/+6 |
| |