Use dict2lookup.

This commit is contained in:
Guido van Rossum 1991-08-16 09:01:55 +00:00
parent f0ada4a130
commit b881314b6f

View file

@ -134,7 +134,7 @@ wr_object(v, fp)
extern object *getdict2key();
key = getdict2key(v, (int)i);
if (key != NULL) {
val = dictlookup(v, getstringvalue(key));
val = dict2lookup(v, key); /* Can't be NULL */
wr_object(key, fp);
wr_object(val, fp);
}