From: DITTGEN P. <pie...@cr...> - 2001-04-04 15:31:56
|
> > for aKey in myMap.getKeys(): > Correct is: for aKey in myMap.keys(): > or > for (aKey, aValue) in myMap.entries() > Correct is: for (aKey, aValue) in myMap.items(): Regards Pierre |