diff options
author | Tim Peters <tim.peters@gmail.com> | 2003-07-23 00:30:11 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2003-07-23 00:30:11 (GMT) |
commit | 9390dd5b4aa5f32551ac9e5d9988930fbb8ad055 (patch) | |
tree | 1f810ea61c92956e553b70e14f29108c9be7cb7d /Lib/test/regrtest.py | |
parent | 36f7e938f287adb4a5c00bb66c5479357dfa9c26 (diff) | |
download | cpython-9390dd5b4aa5f32551ac9e5d9988930fbb8ad055.zip cpython-9390dd5b4aa5f32551ac9e5d9988930fbb8ad055.tar.gz cpython-9390dd5b4aa5f32551ac9e5d9988930fbb8ad055.tar.bz2 |
locale-restoration code: Don't leave comparison to None implicit. For
all I know, the original locale may be '' (I don't think that's possible,
but ...), and if so we would certainly want to restore it.
Diffstat (limited to 'Lib/test/regrtest.py')
-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 12e65e5..6f6d0f0 100755 --- a/Lib/test/regrtest.py +++ b/Lib/test/regrtest.py @@ -331,7 +331,7 @@ def main(tests=None, testdir=None, verbose=0, quiet=0, generate=0, else: os.unlink(filename) - sys.exit(len(bad) > 0) + #sys.exit(len(bad) > 0) STDTESTS = [ |