Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Patch #2167 from calvin: Remove unused imports | Christian Heimes | 2008-02-23 | 1 | -1/+0 |
| | |||||
* | Patch #1682205: a TypeError while unpacking an iterable is no longer | Georg Brandl | 2007-03-21 | 1 | -1/+1 |
| | | | | masked by a generic one with the message "unpack non-sequence". | ||||
* | Port test_unpack to doctest (patch #736962). | Johannes Gijsbers | 2004-09-24 | 1 | -144/+131 |
| | |||||
* | Complete the absolute import patch for the test suite. All relative | Barry Warsaw | 2002-07-30 | 1 | -1/+1 |
| | | | | | | | | imports of test modules now import from the test package. Other related oddities are also fixed (like DeprecationWarning filters that weren't specifying the full import part, etc.). Also did a general code cleanup to remove all "from test.test_support import *"'s. Other from...import *'s weren't changed. | ||||
* | 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. :) | ||||
* | Update the code to better reflect recommended style: | Fred Drake | 2000-12-12 | 1 | -7/+7 |
| | | | | | Use != instead of <> since <> is documented as "obsolescent". Use "is" and "is not" when comparing with None or type objects. | ||||
* | Added some single tuple/list unpacking for JPython regression testing. | Barry Warsaw | 2000-10-12 | 1 | -0/+12 |
| | |||||
* | Convert some old-style string exceptions to class exceptions. | Fred Drake | 2000-08-18 | 1 | -1/+2 |
| | |||||
* | Mass check-in after untabifying all files that need it. | Guido van Rossum | 1998-03-26 | 1 | -8/+8 |
| | |||||
* | regression test for new sequence unpacking semantics | Barry Warsaw | 1997-08-25 | 1 | -0/+131 |