Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add missing imports. | Georg Brandl | 2010-02-06 | 1 | -0/+1 |
| | |||||
* | #4317: Fix an Array Bounds Read in imageop.rgb2rgb8. | Amaury Forgeot d'Arc | 2008-11-18 | 1 | -1/+2 |
| | | | | Will backport to 2.4. | ||||
* | fix security issue 2: imageop's poor validation of arguments could result in ↵ | Benjamin Peterson | 2008-09-30 | 1 | -2/+63 |
| | | | | | | | segfaults patch by Victor Stinner reviewed by myself and Brett | ||||
* | Depreate imageop for removal in 3.0. | Brett Cannon | 2008-05-12 | 1 | -4/+3 |
| | |||||
* | Add test_main() functions to various tests where it was simple to do. Done so | Brett Cannon | 2008-03-03 | 1 | -2/+3 |
| | | | | | that regrtest can execute the test_main() directly instead of relying on import side-effects. | ||||
* | Move imgfile import to the global namespace to trigger an import error ASAP to | Brett Cannon | 2007-05-20 | 1 | -4/+1 |
| | | | | prevent creation of a test file. | ||||
* | Remove the rgbimg module. It has been deprecated since Python 2.5. | Brett Cannon | 2007-05-20 | 1 | -29/+3 |
| | |||||
* | Suppress new deprecation warnings when running the | Tim Peters | 2006-02-18 | 1 | -0/+6 |
| | | | | | | | | | | | 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. | ||||
* | 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. :) | ||||
* | SF patch #474590 -- RISC OS support | Guido van Rossum | 2001-10-24 | 1 | -5/+5 |
| | |||||
* | a bold attempt to fix things broken by MAL's verify patch: import | Fredrik Lundh | 2001-01-17 | 1 | -1/+1 |
| | | | | 'verify' iff it's used by a test module... | ||||
* | This patch removes all uses of "assert" in the regression test suite | Marc-André Lemburg | 2001-01-17 | 1 | -1/+1 |
| | | | | | | | and replaces them with a new API verify(). As a result the regression suite will also perform its tests in optimization mode. Written by Marc-Andre Lemburg. Copyright assigned to Guido van Rossum. | ||||
* | Make reindent.py happy (convert everything to 4-space indents!). | Fred Drake | 2000-10-23 | 1 | -18/+18 |
| | |||||
* | Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either | Thomas Wouters | 2000-07-16 | 1 | -1/+1 |
| | | | | | | | | | | comments, docstrings or error messages. I fixed two minor things in test_winreg.py ("didn't" -> "Didn't" and "Didnt" -> "Didn't"). There is a minor style issue involved: Guido seems to have preferred English grammar (behaviour, honour) in a couple places. This patch changes that to American, which is the more prominent style in the source. I prefer English myself, so if English is preferred, I'd be happy to supply a patch myself ;) | ||||
* | Mass check-in after untabifying all files that need it. | Guido van Rossum | 1998-03-26 | 1 | -31/+31 |
| | |||||
* | Fix path search for test data file so it works under more circumstances. | Guido van Rossum | 1997-10-01 | 1 | -1/+6 |
| | |||||
* | More rational implementation of get_qualified_path() -- search along | Guido van Rossum | 1997-05-14 | 1 | -12/+5 |
| | | | | sys.path instead of assuming __file__ works. | ||||
* | Use uuencoded test images. | Guido van Rossum | 1997-04-16 | 1 | -5/+13 |
| | |||||
* | Opps. Added tests for the last two methods that were missing from | Roger E. Masse | 1997-01-15 | 1 | -1/+11 |
| | | | | the test program: 'grey2rgb' and 'rgb2grey' | ||||
* | Modified to use 'rgbimg' instead of the SGI specific 'imgfile' for reading | Roger E. Masse | 1997-01-15 | 1 | -24/+58 |
| | | | | | | | | the imagefiles and converting tham to a format suitable for imageop. Also added two more tests 'rgb2rgb8' and 'rgb82rgb' which remove the dependence on the file 'greytest.rgb'. Note: test_imgfile.py still uses 'greytest.rgb' | ||||
* | Test program for the SGI imageop module. | Roger E. Masse | 1996-12-20 | 1 | -0/+121 |