diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-08-12 02:01:09 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-08-12 02:01:09 (GMT) |
commit | a2be2d624a47e420266606f0cb2a2e030797f650 (patch) | |
tree | f2745e0b7f197e5f9b7c26160892117c911e36d6 /Lib/test | |
parent | d5e5a2aa284d610b2bf1fb948c0e8da348ad2733 (diff) | |
download | cpython-a2be2d624a47e420266606f0cb2a2e030797f650.zip cpython-a2be2d624a47e420266606f0cb2a2e030797f650.tar.gz cpython-a2be2d624a47e420266606f0cb2a2e030797f650.tar.bz2 |
Move line; reported on python-dev by Mark Favas (thanks!).
Diffstat (limited to 'Lib/test')
-rwxr-xr-x | Lib/test/regrtest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py index b6d09c8..3a16bbf 100755 --- a/Lib/test/regrtest.py +++ b/Lib/test/regrtest.py @@ -170,9 +170,9 @@ def main(tests=None, testdir=None, verbose=0, quiet=0, generate=0, print " ".join(skipped) e = _ExpectedSkips() + plat = sys.platform if e.isvalid(): surprise = _Set(skipped) - e.getexpected() - plat = sys.platform if surprise: print count(len(surprise), "skip"), \ "unexpected on", plat + ":", \ |