/opt/imh-python/lib/python3.9/site-packages/psycopg2
NameSizeModeActions
__pycache__/-0755rm
compat.py3670644editdlrm
errorcodes.py142730644editdlrm
errors.py14200644editdlrm
extensions.py71220644editdlrm
extras.py441820644editdlrm
pool.py63190644editdlrm
sql.py149030644editdlrm
tz.py44460644editdlrm
_ipaddress.py29670644editdlrm
_json.py72960644editdlrm
_lru_cache.py42610644editdlrm
_psycopg.cpython-39-x86_64-linux-gnu.so3801920755editdlrm
_range.py177050644editdlrm
__init__.py49160644editdlrm
Edit: /opt/imh-python/lib/python3.9/site-packages/psycopg2/compat.py (367B)
import sys __all__ = ['string_types', 'text_type', 'lru_cache'] if sys.version_info[0] == 2: # Python 2 PY2 = True PY3 = False string_types = basestring, text_type = unicode from ._lru_cache import lru_cache else: # Python 3 PY2 = False PY3 = True string_types = str, text_type = str from functools import lru_cache