Add Python 3.6.3 scanner lookup

This commit is contained in:
rocky
2017-11-04 11:13:55 -04:00
parent b32823bb7d
commit 6746e5167d
2 changed files with 2 additions and 0 deletions

View File

@@ -320,5 +320,6 @@ if __name__ == "__main__":
import inspect, uncompyle6
co = inspect.currentframe().f_code
scanner = get_scanner('2.7.13', True)
scanner = get_scanner(sys.version[:5], False)
scanner = get_scanner(uncompyle6.PYTHON_VERSION, IS_PYPY, True)
tokens, customize = scanner.ingest(co, {})