Commit 7f5ba546 authored by Tim Peters's avatar Tim Peters

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.
parent 3cee7805
...@@ -331,7 +331,7 @@ def main(tests=None, testdir=None, verbose=0, quiet=0, generate=0, ...@@ -331,7 +331,7 @@ def main(tests=None, testdir=None, verbose=0, quiet=0, generate=0,
else: else:
os.unlink(filename) os.unlink(filename)
sys.exit(len(bad) > 0) #sys.exit(len(bad) > 0)
STDTESTS = [ STDTESTS = [
......
...@@ -483,7 +483,7 @@ def test_main(): ...@@ -483,7 +483,7 @@ def test_main():
try: try:
test_main_inner() test_main_inner()
finally: finally:
if original_locale: if original_locale is not None:
locale.setlocale(locale.LC_ALL, original_locale) locale.setlocale(locale.LC_ALL, original_locale)
if __name__ == "__main__": if __name__ == "__main__":
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment