diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-10-11 22:27:13 +0200 |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-10-11 22:27:13 +0200 |
commit | 8c9818980b639d4f50d0fb95ee383565e7dfa171 (patch) | |
tree | 88c08db0ff7ef7c7927bddb58ef052aeffac4ca2 /Python/import.c | |
parent | 577db2c9f0679df3762783a0e80a2e85f23ef562 (diff) | |
download | cpython-git-8c9818980b639d4f50d0fb95ee383565e7dfa171.tar.gz |
Fix typo in import.c
Diffstat (limited to 'Python/import.c')
-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 6f564a65da..d937cc165a 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; |