summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* 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
|
* #7926: fix-up wording.Georg Brandl2010-02-141-1/+2
|
* Silence more compiler warnings; fix an instance of potential undefined ↵Mark Dickinson2010-02-141-4/+5
| | | | behaviour from signed overflow.
* Silence some 'comparison between signed and unsigned' compiler warnings.Mark Dickinson2010-02-141-7/+8
|
* #7926: fix stray parens.Georg Brandl2010-02-141-5/+6
|
* #7921: fix links. Patch by Brian Curtin.Ezio Melotti2010-02-141-6/+7
|
* Check that 'd' isn't allowed as an exponent specifier in inputs to the float ↵Mark Dickinson2010-02-121-0/+3
| | | | function.
* #7907: fix wrong function name in doc. Patch by Brian Curtin.Ezio Melotti2010-02-111-1/+1
|
* Adding TextTestResult to unittest.__all__Michael Foord2010-02-111-1/+2
|
* Finish fix for issue 7715, after explicit search for calls to `arch`Ronald Oussoren2010-02-112-9/+9
|
* Fix copy&paste error in the definition of ARCH_RUN_32BIT for a 3-way universalRonald Oussoren2010-02-112-3/+3
| | | | build (all other definition where correct).
* Add guard around the prototype for completion_matches to enableRonald Oussoren2010-02-111-0/+3
| | | | compilition with libedit on OSX 10.5
* Improve issue 7835 fix per MAL to handle the case that theR. David Murray2010-02-111-4/+5
| | | | module dictionary has also been cleared.