dictobject.c: explain why stringlib is used

This commit is contained in:
Victor Stinner 2016-09-09 20:22:59 -07:00
parent 37e4ef7b17
commit 990397ef1e
1 changed files with 1 additions and 1 deletions

View 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"