diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2016-09-10 03:22:59 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2016-09-10 03:22:59 (GMT) |
commit | 990397ef1e69f531e1efaaac63211256f0eeb46c (patch) | |
tree | 7d13197f19cfb0ab9c129c339a7744e9dd00313e | |
parent | 37e4ef7b17ce6e98ca725c0a53ae14c313c0e48c (diff) | |
download | cpython-990397ef1e69f531e1efaaac63211256f0eeb46c.zip cpython-990397ef1e69f531e1efaaac63211256f0eeb46c.tar.gz cpython-990397ef1e69f531e1efaaac63211256f0eeb46c.tar.bz2 |
dictobject.c: explain why stringlib is used
-rw-r--r-- | Objects/dictobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/dictobject.c b/Objects/dictobject.c index 8a13fb4..91a4e7d 100644 --- a/Objects/dictobject.c +++ b/Objects/dictobject.c @@ -111,7 +111,7 @@ converting the dict to the combined table. #include "Python.h" #include "dict-common.h" -#include "stringlib/eq.h" +#include "stringlib/eq.h" /* to get unicode_eq() */ /*[clinic input] class dict "PyDictObject *" "&PyDict_Type" |