diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-10-11 20:27:13 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-10-11 20:27:13 (GMT) |
commit | 8c9818980b639d4f50d0fb95ee383565e7dfa171 (patch) | |
tree | 88c08db0ff7ef7c7927bddb58ef052aeffac4ca2 /Python | |
parent | 577db2c9f0679df3762783a0e80a2e85f23ef562 (diff) | |
download | cpython-8c9818980b639d4f50d0fb95ee383565e7dfa171.zip cpython-8c9818980b639d4f50d0fb95ee383565e7dfa171.tar.gz cpython-8c9818980b639d4f50d0fb95ee383565e7dfa171.tar.bz2 |
Fix typo in import.c
Diffstat (limited to 'Python')
-rw-r--r-- | Python/import.c | 2 |
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; |