TypeError when subclassing 'list'
Simon Percivall
percivall at gmail.com
Mon Feb 27 01:06:59 EST 2006
The error you're seeing is because you've rebound 'list' to something
else. Try putting "list = type([])" somewhere above your code.
More information about the Python-list
mailing list