compare singletons by identity not equality (closes #16712)

Patch from Serhiy Storchaka.
diff --git a/Lib/test/support.py b/Lib/test/support.py
index 014bcf5..c5640e0 100644
--- a/Lib/test/support.py
+++ b/Lib/test/support.py
@@ -1232,7 +1232,7 @@
             try:
                 return func(*args, **kwds)
             finally:
-                if orig_tz == None:
+                if orig_tz is None:
                     del os.environ['TZ']
                 else:
                     os.environ['TZ'] = orig_tz