diff options
author | Brian Curtin <brian.curtin@gmail.com> | 2010-09-29 19:09:33 (GMT) |
---|---|---|
committer | Brian Curtin <brian.curtin@gmail.com> | 2010-09-29 19:09:33 (GMT) |
commit | 748cacee469b3e0204b5f1323c22bae7a0f11e1a (patch) | |
tree | 090e9d5db9c07a89e77521a9f6897f3ee869662d /Python/import.c | |
parent | c60371748b400b8b891fb2e5d2fe25b007c85994 (diff) | |
download | cpython-748cacee469b3e0204b5f1323c22bae7a0f11e1a.zip cpython-748cacee469b3e0204b5f1323c22bae7a0f11e1a.tar.gz cpython-748cacee469b3e0204b5f1323c22bae7a0f11e1a.tar.bz2 |
Remove an unreferenced variable. len is no longer needed.
Diffstat (limited to 'Python/import.c')
-rw-r--r-- | Python/import.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Python/import.c b/Python/import.c index b708f27..43c1494 100644 --- a/Python/import.c +++ b/Python/import.c @@ -3723,7 +3723,6 @@ NullImporter_init(NullImporter *self, PyObject *args, PyObject *kwds) PyObject *pathobj; DWORD rv; wchar_t *path; - Py_ssize_t len; if (!_PyArg_NoKeywords("NullImporter()", kwds)) return -1; |