From 13217b06bfe480bf41a1242c166ce5b7d83ca81f Mon Sep 17 00:00:00 2001 From: "Andrew M. Kuchling" Date: Sun, 8 Nov 2009 16:31:00 +0000 Subject: [PATCH] Grammar fix --- pep-0372.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pep-0372.txt b/pep-0372.txt index e1e99b361..87406b197 100644 --- a/pep-0372.txt +++ b/pep-0372.txt @@ -196,7 +196,7 @@ How well does OrderedDict work with the json module, PyYAML, and ConfigParser? In Py2.6, the object_hook for json decoders passes-in an already built dictionary so order is lost before the object hook sees it. This - problem is being fixed for Python 2.7/3.1 by adding an new hook that + problem is being fixed for Python 2.7/3.1 by adding a new hook that preserves order (see http://bugs.python.org/issue5381 ). With the new hook, order can be preserved::