Commit 180ceedc authored by Jack Jansen's avatar Jack Jansen

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.
parent 25e61d9e
from _Res import *
try:
from OverrideFrom23._Res import *
except ImportError:
from _Res import *
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment