/usr/share/pyshared/pandas/util/py3compat.py is in python-pandas 0.7.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | import sys
PY3 = (sys.version_info[0] >= 3)
if PY3:
def isidentifier(s):
return s.isidentifier()
else:
# Python 2
import re
_name_re = re.compile(r"[a-zA-Z_][a-zA-Z0-9_]*$")
def isidentifier(s, dotted=False):
return bool(_name_re.match(s))
|