Kaydet (Commit) b881314b authored tarafından Guido van Rossum's avatar Guido van Rossum

Use dict2lookup.

üst f0ada4a1
......@@ -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);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment