preserves/implementations/python/preserves/compat.py

10 lines
151 B
Python
Raw Normal View History

2021-08-16 23:24:50 +00:00
try:
basestring_ = basestring
except NameError:
basestring_ = str
if isinstance(chr(123), bytes):
ord_ = ord
else:
ord_ = lambda x: x