Preview: py27compat.py
Size: 306 B
/proc/self/root/opt/alt/python33/lib/python3.3/site-packages/setuptools/py27compat.py
""" Compatibility Support for Python 2.7 and earlier """ import sys def get_all_headers(message, key): """ Given an HTTPMessage, return all headers matching a given key. """ return message.get_all(key) if sys.version_info < (3,): def get_all_headers(message, key): return message.getheaders(key)
Directory Contents
Dirs: 2 × Files: 18