https://hg.python.org/cpython/rev/307549843823 changeset: 103544:307549843823 user: Victor Stinner <victor.stinner at gmail.com> date: Fri Sep 09 20:22:59 2016 -0700 summary: dictobject.c: explain why stringlib is used files: Objects/dictobject.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Objects/dictobject.c b/Objects/dictobject.c --- a/Objects/dictobject.c +++ b/Objects/dictobject.c @@ -111,7 +111,7 @@ #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" -- Repository URL: https://hg.python.org/cpython