15 Sep
2001
15 Sep
'01
7:49 p.m.
Andy McKay writes:
Wild guess... theres a module /lib/python/Interface/Exceptions.py. In Python 1.5.2 doesnt that mean windows will import that rather than exceptions.py? Only when you happen to be inside the "Interface" package... Anywhere else, it should find "exceptions".
However, I checked that in Python2.1 (at least) there is not "exceptions" module. "SyntaxError" (and friends) are defined in "__builtins__" and can be accessed directly. Dieter