commit | fafa8b7797034aa799157172392a5b7721e1854a | [log] [tgz] |
---|---|---|
author | Ezio Melotti <ezio.melotti@gmail.com> | Sat Nov 03 17:46:51 2012 +0200 |
committer | Ezio Melotti <ezio.melotti@gmail.com> | Sat Nov 03 17:46:51 2012 +0200 |
tree | 02a8a59d5561c54d43dd69136afc66c377be7dee | |
parent | 4af77a027680f2aa956a4d1c50947d6e2dbd0185 [diff] [blame] | |
parent | 2cc3b4ba9ffa658784da03f14a0a068e2c61d1b3 [diff] [blame] |
#16152: merge with 3.2.
diff --git a/Lib/test/test_tokenize.py b/Lib/test/test_tokenize.py index 213e9b4..b4a58f0 100644 --- a/Lib/test/test_tokenize.py +++ b/Lib/test/test_tokenize.py
@@ -1109,6 +1109,10 @@ 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():