summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Adds an exit parameter to unittest.main(). If False main no longerMichael Foord2009-05-024-12/+98
| | | | | | | | calls sys.exit. Closes issue 3379. Michael Foord
* Keep py3k and trunk code in sync.Eric Smith2009-05-021-0/+4
|
* Fix directive name.Georg Brandl2009-05-011-21/+21
|
* Review ipaddr docs and add them in the TOC under "Internet protocols".Georg Brandl2009-05-012-77/+80
|
* Issue #5726: Make Modules/ld_so_aix return the actual exit code of the ↵Antoine Pitrou2009-05-012-0/+6
| | | | | | linker, rather than always exit successfully. Patch by Floris Bruynooghe.
* Issue #3002: `shutil.copyfile()` and `shutil.copytree()` now raise anAntoine Pitrou2009-05-013-4/+53
| | | | error when a named pipe is encountered, rather than blocking infinitely.
* Adds the ipaddr module to the standard library. Issue #3959.Gregory P. Smith2009-05-014-0/+2262
| | | | | | Based off of subversion r69 from http://code.google.com/p/ipaddr-py/ This code is 2to3 safe, I'll merge it into py3k later this afternoon.
* Make test.test_support.EnvironmentVarGuard behave like a dictionary.Walter Dörwald2009-05-0111-66/+71
| | | | | All changes are mirrored to the underlying os.environ dict, but rolled back on exit from the with block.
* #5889: remove comma at the end of a list that some C compilers don't like.Georg Brandl2009-05-011-1/+1
|
* Fix for Issue1648102, based on the MSDN spec: If this parameter specifies theSenthil Kumaran2009-05-011-10/+3
| | | | | "<local>" macro as the only entry, this function bypasses any host name that does not contain a period.
* Make the turtle.rst doctests pass. I have a feeling there should beR. David Murray2009-04-301-350/+683
| | | | | more cleanup, but I don't know now to kill turtles. Especially unexpected ones... ;)
* Issue #1588: Add complex.__format__.Eric Smith2009-04-307-58/+449
|
* prevent ref cycles by removing bound method on close()Benjamin Peterson2009-04-301-0/+2
|
* make sure to close fileBenjamin Peterson2009-04-301-1/+1
|
* make sure mode is removable while cleaning up test droppingsBenjamin Peterson2009-04-291-0/+5
|
* #5878: fix repr of re object.Georg Brandl2009-04-291-1/+1
|
* fix test_shutil on ZFS #5676Benjamin Peterson2009-04-291-2/+16
|
* Backport some of the float formatting tests from py3k.Mark Dickinson2009-04-292-0/+375
|
* Remove format_float and use _PyOS_double_to_string instead.Mark Dickinson2009-04-292-82/+27
|
* Issue #5864: format(1234.5, '.4') gives misleading resultMark Dickinson2009-04-293-11/+112
| | | | (Backport of r72109 from py3k.)
* run autoconfBenjamin Peterson2009-04-291-1/+32
|
* More aifc tests.R. David Murray2009-04-291-7/+53
|
* - configure.in: Don't error, when no --with-dbmliborder option is presentMatthias Klose2009-04-291-4/+2
|
* - Issue #4587: Add configure option --with-dbmliborder=db1:db2:... to specifyMatthias Klose2009-04-292-5/+6
| | | | the order that backends for the dbm extension are checked.
* - Issue #4587: Add configure option --with-dbmliborder=db1:db2:... to specifyMatthias Klose2009-04-294-33/+88
| | | | the order that backends for the dbm extension are checked.
* Now that we've got a test_aifc, add a few tests.R. David Murray2009-04-291-0/+30
|
* Fix issue 2245. aifc now skips any chunk type it doesn't actuallyR. David Murray2009-04-296-8/+28
| | | | | | | process instead of throwing errors for anything not in an explicit skip list. This is per this spec: http://www.cnpbagwell.com/aiff-c.txt. Spec reference and test sound file provided by Santiago Peresón, fix based on patch by Hiroaki Kawai.
* Fixed #5874 : distutils.tests.test_config_cmd is not locale-sensitive anymoreTarek Ziadé2009-04-292-1/+4
|
* Make the doctests in the docs pass, except for those in the turtle module.Georg Brandl2009-04-285-24/+28
|
* Issue #4305: ctypes fails to build on mipsel-linux-gnu (detects mipsThomas Heller2009-04-283-6/+8
| | | | instead of mipsel)
* Remove spurious 'u'.R. David Murray2009-04-281-1/+2
|
* Various small fixups to the multiprocessing docs, mostly fixing andR. David Murray2009-04-281-44/+64
| | | | | | | | | | enabling doctests that Sphinx can run, and fixing and disabling tests that Sphinx can't run. I hand checked every test not now marked as a doctest, and all except the two that have open bug reports against them now work, at least on Linux/trunk. (I did not look at the last example at all since there was already an open bug). I did not read the whole document with an editor's eye, but I did fix a few things I noticed while working on the tests.
* Silence warning on Windows.Eric Smith2009-04-281-1/+1
|
* Issue #1734234: Massively speedup `unicodedata.normalize()` when theAntoine Pitrou2009-04-275-1746/+2056
| | | | | string is already in normalized form, by performing a quick check beforehand. Original patch by Rauli Ruohonen.
* Add example to the seealso section.Raymond Hettinger2009-04-271-2/+9
|
* Update spec version number.Raymond Hettinger2009-04-271-1/+1
|
* Issue #5853: calling a function of the mimetypes module from several threadsAntoine Pitrou2009-04-272-15/+17
| | | | | at once could hit the recursion limit if the mimetypes database hadn't been initialized before.
* Issue #5793: rationalize isdigit / isalpha / tolower, etc. Will port to ↵Eric Smith2009-04-2715-303/+338
| | | | py3k. Should fix Windows buildbot errors.
* Make sys.xxx variable references into links, note that print_last onlyR. David Murray2009-04-271-28/+22
| | | | | | | | works when an exception gets to the interactive prompt, and update the examples after testing. The last one is now a valid Sphinx doctest, but of the preceding two one can't be made a doctest and the other one I'm postponing to 3.x because sphinx handles doctests as Unicode strings and that makes the 2.x output confusing.
* #5840: dont claim we dont support TLS.Georg Brandl2009-04-271-4/+3
|
* #5848: small unittest doc patch.Georg Brandl2009-04-271-3/+20
|
* Demote warnings to notices, part 2: stuff that is 2.x-only.Georg Brandl2009-04-2720-65/+49
|
* Demote warnings to notices where appropriate, following the goal that as few ↵Georg Brandl2009-04-2721-41/+40
| | | | | | "red box" warnings should clutter the docs as possible. Part 1: stuff that gets merged to Py3k.
* Remove ".. warning::" markup that doesnt contain warnings for users, rather ↵Georg Brandl2009-04-272-19/+8
| | | | todo items.
* #5856: fix typo s in traceback example.Georg Brandl2009-04-271-5/+4
|
* Issue #5854: Updated __all__ to include some missing names and remove some ↵Vinay Sajip2009-04-272-6/+12
| | | | names which should not be exported.
* Right click 'go to file/line' not working if spacesKurt B. Kaiser2009-04-262-25/+13
| | | | in path. Bug 5559.
* Use test.test_support.EnvironmentVarGuard where tests change environment vars.Walter Dörwald2009-04-266-56/+36
|
* Fix typo in function nameMark Dickinson2009-04-261-3/+3
|
* Fix typo.Walter Dörwald2009-04-261-1/+1
|