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 | f716b4e95cf727dc9fe4a592c38e86b73ca16c74 (patch) | |
| tree | c7e4541608a94fbd8776a2669b67bdd5d20654ae /Python | |
| parent | 931667e8f08e321788ca3c4f588d3fa1c8e89a3b (diff) | |
| download | cpython-f716b4e95cf727dc9fe4a592c38e86b73ca16c74.tar.gz | |
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 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; |
