diff options
author | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2011-07-02 16:21:37 (GMT) |
---|---|---|
committer | Vinay Sajip <vinay_sajip@yahoo.co.uk> | 2011-07-02 16:21:37 (GMT) |
commit | 623e8b86af8d8b34589478f7c85de49054e07a6d (patch) | |
tree | d46fbcc68031d8719edefd677367b704c0145a27 /Python/marshal.c | |
parent | 5bdae3bb7c7ab9e85453698972fa5fa926f012f3 (diff) | |
download | cpython-623e8b86af8d8b34589478f7c85de49054e07a6d.zip cpython-623e8b86af8d8b34589478f7c85de49054e07a6d.tar.gz cpython-623e8b86af8d8b34589478f7c85de49054e07a6d.tar.bz2 |
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 396e05c..76d5690 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. |