]> granicus.if.org Git - python/commitdiff
dictobject.c: explain why stringlib is used
authorVictor Stinner <victor.stinner@gmail.com>
Sat, 10 Sep 2016 03:22:59 +0000 (20:22 -0700)
committerVictor Stinner <victor.stinner@gmail.com>
Sat, 10 Sep 2016 03:22:59 +0000 (20:22 -0700)
Objects/dictobject.c

index 8a13fb40e9883f0a47e27486f9f53e3126ef9cf9..91a4e7d55981dbc4c70f32a0adcab4851e0c7074 100644 (file)
@@ -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"