namedtuple25 -> namedtuple24

This commit is contained in:
rocky
2017-04-14 05:42:44 -04:00
parent 09eb7f7f78
commit 7e8f7ba674
3 changed files with 3 additions and 3 deletions

View File

@@ -23,7 +23,7 @@ Finally we save token information.
from uncompyle6 import PYTHON_VERSION
if PYTHON_VERSION < 2.6:
from xdis.namedtuple25 import namedtuple
from xdis.namedtuple24 import namedtuple
else:
from collections import namedtuple

View File

@@ -23,7 +23,7 @@ Finally we save token information.
from uncompyle6 import PYTHON_VERSION
if PYTHON_VERSION < 2.6:
from xdis.namedtuple25 import namedtuple
from xdis.namedtuple24 import namedtuple
else:
from collections import namedtuple

View File

@@ -82,7 +82,7 @@ from uncompyle6.semantics.make_function import find_all_globals, find_none
from spark_parser import DEFAULT_DEBUG as PARSER_DEFAULT_DEBUG
if PYTHON_VERSION < 2.6:
from xdis.namedtuple25 import namedtuple
from xdis.namedtuple24 import namedtuple
else:
from collections import namedtuple