Populating a dictionary, fast [SOLVED]

Michael Bacarella mbac at gpshopper.com
Mon Nov 12 12:34:10 EST 2007


>     id2name[key >> 40][key & 0x10000000000] = name

Oops, typo.  It's actually:

	Id2name[key >> 40][key & 0xffffffffff] = name





More information about the Python-list mailing list