diff options
author | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2011-07-02 17:21:37 +0100 |
---|---|---|
committer | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2011-07-02 17:21:37 +0100 |
commit | bbda62711e0ebdf0c76422eb67c47eea36ca805c (patch) | |
tree | bb133caa7ff06b7b89fe657094c035217c0cbc3c /Python/marshal.c | |
parent | afc882a4bd8bf7a779062470bb2c2ee2690ee661 (diff) | |
download | cpython-bbda62711e0ebdf0c76422eb67c47eea36ca805c.tar.gz |
Removed some unused local variables.
Diffstat (limited to 'Python/marshal.c')
-rw-r--r-- | Python/marshal.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Python/marshal.c b/Python/marshal.c index 396e05c638..76d5690438 100644 --- a/Python/marshal.c +++ b/Python/marshal.c @@ -1315,8 +1315,6 @@ marshal_load(PyObject *self, PyObject *f) { PyObject *data, *result; RFILE rf; - char *p; - int n; /* * Make a call to the read method, but read zero bytes. |