]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Remove unused variable.
authorFred Drake <fdrake@acm.org>
Tue, 22 May 2001 22:36:52 +0000 (22:36 +0000)
committerFred Drake <fdrake@acm.org>
Tue, 22 May 2001 22:36:52 +0000 (22:36 +0000)
Objects/dictobject.c

index 81bdf598c46456f01da21836d3618bbe1d0d3211..15709cf4fa7d1e4897d7676ae0b6bba18e342b8a 100644 (file)
@@ -395,7 +395,6 @@ actually be smaller than the old one.
 static int
 dictresize(dictobject *mp, int minused)
 {
-       register int oldsize = mp->ma_size;
        register int newsize, newpoly;
        register dictentry *oldtable = mp->ma_table;
        register dictentry *newtable;