Miki Tebeka wrote:
I get to the second "except" clause, and the printout is:
/home/mikit/work/nightly/scm/common.py:3
/home/mikit/work/nightly/scm/common.py:3
False

How is this possible?

Is line 3 inside a function? Then the class will be recreated anew each time the function is run.


Has common.py been reload()'ed at some point? Then previously imported modules may still have names bound to the old instances.

And so forth.

Cheers,
Nick.

--
Nick Coghlan   |   [EMAIL PROTECTED]   |   Brisbane, Australia
---------------------------------------------------------------
            http://boredomandlaziness.skystorm.net
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to