cpython/Mac/Lib/Carbon/Res.py
Jack Jansen 180ceedc09 Python 2.2 as installed by Apple has a version of _Res that is too old. We
attempt to load an override version in this case.
2002-11-15 00:06:52 +00:00

4 lines
80 B
Python

try:
from OverrideFrom23._Res import *
except ImportError:
from _Res import *