#16152: merge with 3.3.

This commit is contained in:
Ezio Melotti 2012-11-03 17:51:25 +02:00
commit 4e0f36b156
4 changed files with 11 additions and 1 deletions

View file

@ -1109,6 +1109,10 @@ class TestTokenize(TestCase):
token.NAME, token.AMPER, token.NUMBER,
token.RPAR)
def test_pathological_trailing_whitespace(self):
# See http://bugs.python.org/issue16152
self.assertExactTypeEqual('@ ', token.AT)
__test__ = {"doctests" : doctests, 'decistmt': decistmt}
def test_main():