Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | revert creation of the html.entities and html.parser modules | Fred Drake | 2008-05-20 | 1 | -1/+1 |
| | | | | (http://bugs.python.org/issue2882) | ||||
* | update references and documentation for modules in the new html package | Fred Drake | 2008-05-17 | 1 | -1/+1 |
| | | | | (http://bugs.python.org/issue2882) | ||||
* | test_sundry performs minimal tests (a simple import...) on modules that are ↵ | Amaury Forgeot d'Arc | 2008-04-28 | 1 | -25/+0 |
| | | | | | | | not tested otherwise. Some of them now have tests and can be removed. Only 70 to go... | ||||
* | Add a few tests for pydoc. | Amaury Forgeot d'Arc | 2008-04-24 | 1 | -1/+0 |
| | | | | | | | This is a modified version of a patch proposed by Humberto Diogenes in the discussion of issue1883. I will merge manually this change into the py3k branch: the tests must be adapted. | ||||
* | Changed test so it no longer runs as a side effect of importing. | Jerry Seutter | 2008-04-09 | 1 | -110/+115 |
| | |||||
* | Patch #1680959: add test suite for pipes module. | Georg Brandl | 2007-08-30 | 1 | -1/+0 |
| | |||||
* | Remove test.test_support.guard_warnings_filter. | Brett Cannon | 2007-08-14 | 1 | -2/+2 |
| | | | | | | | | test.test_support.catch_warning is more full-featured and provides the same functionality. Since guard_warnings_filter was added in 2.6 there is no backwards-compatibility issues. | ||||
* | Not sure why this only fails sometimes on Unix machines. Better | Neal Norwitz | 2007-06-11 | 1 | -1/+2 |
| | | | | | to disable it and only import msvccompiler on Windows since that's the only place it can work anyways. | ||||
* | Add all of the distuils modules that don't seem to have explicit tests. :-( | Neal Norwitz | 2007-06-11 | 1 | -1/+47 |
| | | | | | Move an import in mworkscompiler so that this module can be imported on any platform. Hopefully this works on all platforms. | ||||
* | Have mimify raise a DeprecationWarning. The docs and PEP 4 have listed the | Brett Cannon | 2007-05-30 | 1 | -0/+1 |
| | | | | module as deprecated for a while. | ||||
* | Cause posixfile to raise a DeprecationWarning. Documented as deprecated since | Brett Cannon | 2007-05-20 | 1 | -65/+68 |
| | | | | Ptyhon 1.5. | ||||
* | Remove the gopherlib module. It has been raising a DeprecationWarning since | Brett Cannon | 2007-05-16 | 1 | -6/+0 |
| | | | | | | | Python 2.5. Also remove gopher support from urllib/urllib2. As both imported gopherlib the usage of the support would have raised a DeprecationWarning. | ||||
* | Patch #1472854: make the rlcompleter.Completer class usable on non- | Georg Brandl | 2006-04-30 | 1 | -5/+1 |
| | | | | UNIX platforms. | ||||
* | tty isn't supported on all boxes. | Tim Peters | 2006-04-13 | 1 | -1/+6 |
| | |||||
* | Update test_sundry. Many modules have now tests, but | Georg Brandl | 2006-04-12 | 1 | -36/+12 |
| | | | | e.g. SimpleXMLRPCServer wasn't in here yet. | ||||
* | Remove regsub, reconvert, regex, regex_syntax and everything under lib-old. | Neal Norwitz | 2006-03-16 | 1 | -1/+0 |
| | |||||
* | Suppress new deprecation warnings when running the | Tim Peters | 2006-02-18 | 1 | -0/+5 |
| | | | | | | | | | | | test suite. For urllib2, move the import of gopherlib into the only function that uses it: users (including the test suite) certainly shouldn't see a deprecation warning just because they import urllib2! If they actually use gopher_open(), fine, _then_ they should see a deprecation warning. | ||||
* | Patch #1049151: adding bool support to xdrlib.py. | Martin v. Löwis | 2005-02-24 | 1 | -1/+0 |
| | | | | Also add xdrlib._test into the test suite. | ||||
* | Removed deprecated tzparse module. | Raymond Hettinger | 2004-12-05 | 1 | -1/+0 |
| | |||||
* | Remove the deprecated statcache module. | Raymond Hettinger | 2004-12-05 | 1 | -3/+0 |
| | |||||
* | Remove pre module | Andrew M. Kuchling | 2004-06-02 | 1 | -3/+0 |
| | |||||
* | Remove filecmp | Andrew M. Kuchling | 2003-02-13 | 1 | -1/+0 |
| | |||||
* | Lose references to knee (no longer exists) and pyclbr (has its own | Guido van Rossum | 2002-12-03 | 1 | -2/+0 |
| | | | | test suite now). | ||||
* | Get rid of relative imports in all unittests. Now anything that | Barry Warsaw | 2002-07-23 | 1 | -1/+1 |
| | | | | | | | | | | | imports e.g. test_support must do so using an absolute package name such as "import test.test_support" or "from test import test_support". This also updates the README in Lib/test, and gets rid of the duplicate data dirctory in Lib/test/data (replaced by Lib/email/test/data). Now Tim and Jack can have at it. :) | ||||
* | Tighten up some warning filters, and break some dependencies on the | Tim Peters | 2002-04-16 | 1 | -1/+6 |
| | | | | order in which the tests are normally run. | ||||
* | Add a simple test suite for netrc.py, and remove it from test_sundry | Andrew M. Kuchling | 2002-03-22 | 1 | -1/+0 |
| | |||||
* | Move import dbhash out of test_sundry and into test_bsddb, | Guido van Rossum | 2001-12-07 | 1 | -1/+0 |
| | | | | so that test_sundry won't fail if the bsddb module is absent. | ||||
* | Ignore the posixfile deprecation warning for the test suite. | Fred Drake | 2001-10-25 | 1 | -0/+3 |
| | |||||
* | SF patch #440170: Tests for fileinput module. | Tim Peters | 2001-07-11 | 1 | -1/+0 |
| | | | | | New test_fileinput.py from Nick Mathewson, fiddled to use TESTFN and sundry style nits. | ||||
* | SF patch #440144: Tests and minor bugfix for uu module. | Tim Peters | 2001-07-11 | 1 | -1/+0 |
| | | | | | New test_uu.py from Nick Mathewson, fiddled to work on Windows too. Somebody should check that it still works on non-Windows boxes, though! | ||||
* | Remove lines for asynchat & asyncore, as they've now got their own test. | Tim Peters | 2001-04-06 | 1 | -2/+0 |
| | |||||
* | Restore alphabetic order. Also try to import rlcompleter and curses, but | Tim Peters | 2001-01-23 | 1 | -7/+15 |
| | | | | don't fail if they're not available. | ||||
* | The "user" module cannot reasonably be tested. Moved to the end (and | Fred Drake | 2001-01-22 | 1 | -2/+6 |
| | | | | | | commented it out), and added an explanation as to *why*. Added period to docstring. | ||||
* | Jeremy's patch #103323: trivial tests of all untested modules. | Tim Peters | 2001-01-19 | 1 | -0/+93 |