[Python-checkins] r54514 - sandbox/trunk/2to3/tests/test_grammar.py

collin.winter python-checkins at python.org
Wed Mar 21 23:45:01 CET 2007


Author: collin.winter
Date: Wed Mar 21 23:45:00 2007
New Revision: 54514

Modified:
   sandbox/trunk/2to3/tests/test_grammar.py
Log:
Remove invalid tests.

Modified: sandbox/trunk/2to3/tests/test_grammar.py
==============================================================================
--- sandbox/trunk/2to3/tests/test_grammar.py	(original)
+++ sandbox/trunk/2to3/tests/test_grammar.py	Wed Mar 21 23:45:00 2007
@@ -133,12 +133,10 @@
 class TestNumericLiterals(GrammarTest):
     def test_new_octal_notation(self):
         self.validate("""0o7777777777777""")
-        self.invalid_syntax("""0o""")
         self.invalid_syntax("""0o7324528887""")
         
     def test_new_binary_notation(self):
         self.validate("""0b101010""")
-        self.invalid_syntax("""0b""")
         self.invalid_syntax("""0b0101021""")
 
 


More information about the Python-checkins mailing list