diff options
author | Rajath Agasthya <rajathagasthya@users.noreply.github.com> | 2017-08-05 18:28:17 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2017-08-05 18:28:17 (GMT) |
commit | 9cd0ef8f3b93818f0ee5318cb1fc9a1ea32e95b6 (patch) | |
tree | 858dad24d03c810e153cb763af6dc7167a399cbd | |
parent | 4795ba857ef2a89e6b477285df961672106a1792 (diff) | |
download | cpython-9cd0ef8f3b93818f0ee5318cb1fc9a1ea32e95b6.zip cpython-9cd0ef8f3b93818f0ee5318cb1fc9a1ea32e95b6.tar.gz cpython-9cd0ef8f3b93818f0ee5318cb1fc9a1ea32e95b6.tar.bz2 |
bpo-31029: test_tokenize Add missing import unittest (#2998)
-rw-r--r-- | Lib/test/test_tokenize.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_tokenize.py b/Lib/test/test_tokenize.py index 5a81a5f..10e0ad8 100644 --- a/Lib/test/test_tokenize.py +++ b/Lib/test/test_tokenize.py @@ -3,6 +3,7 @@ from tokenize import (tokenize, _tokenize, untokenize, NUMBER, NAME, OP, STRING, ENDMARKER, ENCODING, tok_name, detect_encoding, open as tokenize_open, Untokenizer) from io import BytesIO +import unittest from unittest import TestCase, mock from test.test_grammar import (VALID_UNDERSCORE_LITERALS, INVALID_UNDERSCORE_LITERALS) |