I was wondering if the following two "if" statements compile down to the same bytecode for a standard Dictionary type:
m = {"foo": 1, "blah": 2}
if "foo" in m:
print "sweet"
if m.has_key("foo"):
print "dude"
--
http://mail.python.org/mailman/listinfo/python-list
