summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-10-11 20:27:13 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2011-10-11 20:27:13 (GMT)
commit8c9818980b639d4f50d0fb95ee383565e7dfa171 (patch)
tree88c08db0ff7ef7c7927bddb58ef052aeffac4ca2 /Python
parent577db2c9f0679df3762783a0e80a2e85f23ef562 (diff)
downloadcpython-8c9818980b639d4f50d0fb95ee383565e7dfa171.zip
cpython-8c9818980b639d4f50d0fb95ee383565e7dfa171.tar.gz
cpython-8c9818980b639d4f50d0fb95ee383565e7dfa171.tar.bz2
Fix typo in import.c
Diffstat (limited to 'Python')
-rw-r--r--Python/import.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/import.c b/Python/import.c
index 6f564a6..d937cc1 100644
--- a/Python/import.c
+++ b/Python/import.c
@@ -2283,7 +2283,7 @@ case_ok(PyObject *filename, Py_ssize_t prefix_delta, PyObject *name)
HANDLE h;
int cmp;
wchar_t *wname;
- Py_ssizet wname_len;
+ Py_ssize_t wname_len;
if (Py_GETENV("PYTHONCASEOK") != NULL)
return 1;