Reverting the Revision: 77368.  I committed Flox's big patch for tests by
mistake. ( It may come in for sure tough)
diff --git a/Lib/test/test_optparse.py b/Lib/test/test_optparse.py
index f7eb47b..b11b8c9 100644
--- a/Lib/test/test_optparse.py
+++ b/Lib/test/test_optparse.py
@@ -26,6 +26,12 @@
 from optparse import _match_abbrev
 from optparse import _parse_num
 
+# Do the right thing with boolean values for all known Python versions.
+try:
+    True, False
+except NameError:
+    (True, False) = (1, 0)
+
 retype = type(re.compile(''))
 
 class InterceptedError(Exception):