Nick Coghlan <[EMAIL PROTECTED]> writes:
> Until this code:
> 
> .>>> import pdb
> .>>> pdb.True = 0
> .>>> pdb.x = "Darn writeable module dictionaries"
> .>>> from pdb import True
> .>>> True
> 0
> .>>> from pdb import x
> .>>> x
> 'Darn writeable module dictionaries'

If Python really does behave that way, that bug should be fixed immediately.
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to