[Python-checkins] CVS: python/dist/src/Modules unicodedata.c,2.9,2.10

Fredrik Lundh effbot@users.sourceforge.net
Sun, 18 Feb 2001 03:41:52 -0800


Update of /cvsroot/python/python/dist/src/Modules
In directory usw-pr-cvs1:/tmp/cvs-serv12262/Modules

Modified Files:
	unicodedata.c 
Log Message:


stupid typo (for some reason, this only caused problems on OpenVMS).


Index: unicodedata.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/unicodedata.c,v
retrieving revision 2.9
retrieving revision 2.10
diff -C2 -r2.9 -r2.10
*** unicodedata.c	2001/01/24 07:59:11	2.9
--- unicodedata.c	2001/02/18 11:41:49	2.10
***************
*** 369,373 ****
          v = code_hash[i];
          if (!v)
!             return -1;
          if (cmpname(v, name, namelen)) {
              *code = v;
--- 369,373 ----
          v = code_hash[i];
          if (!v)
!             return 0;
          if (cmpname(v, name, namelen)) {
              *code = v;