diff options
author | Benjamin Peterson <benjamin@python.org> | 2011-10-02 13:19:16 -0400 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2011-10-02 13:19:16 -0400 |
commit | 7a98f5f5ced85e78dc79169bfaeaa1b3adfa0596 (patch) | |
tree | 3b59c5df4c52319e7291b974665567f91cd5463e /Python/import.c | |
parent | f87611385be000c82393d919f3ec843982123647 (diff) | |
download | cpython-7a98f5f5ced85e78dc79169bfaeaa1b3adfa0596.tar.gz |
remove unused label
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 901b733480..9f094c0da0 100644 --- a/Python/import.c +++ b/Python/import.c @@ -3174,7 +3174,6 @@ load_next(PyObject *mod, PyObject *altmod, } } -out: PyMem_Free(nameuni); return result; |