cvs diff -c Objects/unicodeobject.c Modules/ucnhash.c Include/ucnhash.h (in directory Macintosh HD:SWdev:Jack:Python:) Index: Objects/unicodeobject.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Objects/unicodeobject.c,v retrieving revision 2.30 diff -c -r2.30 unicodeobject.c *** Objects/unicodeobject.c 2000/06/28 16:43:35 2.30 --- Objects/unicodeobject.c 2000/06/28 22:05:13 *************** *** 66,72 **** #include "mymath.h" #include "unicodeobject.h" ! #include #if defined(HAVE_LIMITS_H) #include --- 66,72 ---- #include "mymath.h" #include "unicodeobject.h" ! #include "ucnhash.h" #if defined(HAVE_LIMITS_H) #include Index: Modules/ucnhash.c =================================================================== RCS file: /cvsroot/python/python/dist/src/Modules/ucnhash.c,v retrieving revision 1.1 diff -c -r1.1 ucnhash.c *** Modules/ucnhash.c 2000/06/28 16:38:56 1.1 --- Modules/ucnhash.c 2000/06/28 22:05:35 *************** *** 1,4 **** ! #include /* * The hash is produced using the algorithm described in --- 1,4 ---- ! #include "ucnhash.h" /* * The hash is produced using the algorithm described in *************** *** 19,26 **** #define k_cKeys 10538 ! static const unsigned short G[k_cHashElements]; ! static const _Py_UnicodeCharacterName aucn[k_cKeys]; static long f1(const char *key, unsigned int cch) { --- 19,26 ---- #define k_cKeys 10538 ! staticforward const unsigned short G[k_cHashElements]; ! staticforward const _Py_UnicodeCharacterName aucn[k_cKeys]; static long f1(const char *key, unsigned int cch) { Index: Include/ucnhash.h =================================================================== RCS file: /cvsroot/python/python/dist/src/Include/ucnhash.h,v retrieving revision 1.1 diff -c -r1.1 ucnhash.h *** Include/ucnhash.h 2000/06/28 16:37:24 1.1 --- Include/ucnhash.h 2000/06/28 22:05:35 *************** *** 1,5 **** ! #include #include /* --- C API ----------------------------------------------------*/ --- 1,5 ---- ! #include "Python.h" #include /* --- C API ----------------------------------------------------*/