Without testing, I'd say that it would be lot easier to copy something with copy.copy:
import copy
def dictionary_copy(dictionary):
return copy.copy(dictionary)
Vazde 20:33, 12 July 2008 (EEST)
Could be done to make the dictionary_copy(dictionary) more simpler !
Croozeus 06:47, 13 July 2008 (EEST)