From: Victor Stinner Date: Sat, 10 Sep 2016 03:22:59 +0000 (-0700) Subject: dictobject.c: explain why stringlib is used X-Git-Tag: v3.6.0b1~115 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=990397ef1e69f531e1efaaac63211256f0eeb46c;p=thirdparty%2FPython%2Fcpython.git dictobject.c: explain why stringlib is used --- diff --git a/Objects/dictobject.c b/Objects/dictobject.c index 8a13fb40e988..91a4e7d55981 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"