[Python-checkins] cpython: Fix typo in import.c

victor.stinner python-checkins at python.org
Tue Oct 11 22:26:30 CEST 2011


http://hg.python.org/cpython/rev/4be55c2c2356
changeset:   72866:4be55c2c2356
user:        Victor Stinner <victor.stinner at haypocalc.com>
date:        Tue Oct 11 22:27:13 2011 +0200
summary:
  Fix typo in import.c

files:
  Python/import.c |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Python/import.c b/Python/import.c
--- a/Python/import.c
+++ b/Python/import.c
@@ -2283,7 +2283,7 @@
     HANDLE h;
     int cmp;
     wchar_t *wname;
-    Py_ssizet wname_len;
+    Py_ssize_t wname_len;
 
     if (Py_GETENV("PYTHONCASEOK") != NULL)
         return 1;

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list