Your IP : 127.0.0.1


Current Path : /proc/self/root/opt/alt/python27/lib/python2.7/site-packages/requirements_detector/
Upload File :
Current File : //proc/self/root/opt/alt/python27/lib/python2.7/site-packages/requirements_detector/__compat__.py

# Various shims to deal with node renames between astroid versions - astroid 2.0 renamed
# some of the nodes used by this library so for backwards compatibility, old names are
# translated to new.

try:
	from astroid import Call
except ImportError:
	from astroid import CallFunc as Call


try:
	from astroid import AssignName
except ImportError:
	from astroid import AssName as AssignName