commit | 347b30042b68e80b245a03b23cb616024ecb1f1e | [log] [tgz] |
---|---|---|
author | Georg Brandl <georg@python.org> | Thu Mar 30 11:57:00 2006 +0000 |
committer | Georg Brandl <georg@python.org> | Thu Mar 30 11:57:00 2006 +0000 |
tree | 56c43f8b23f0ec425aa3c122b5b7eca975770e62 | |
parent | 3987df5adf6ce821a290bd6e741fbcd8e0589fd8 [diff] [blame] |
Remove unnecessary casts in type object initializers.
diff --git a/Objects/intobject.c b/Objects/intobject.c index 86e2e8c..a88d51f 100644 --- a/Objects/intobject.c +++ b/Objects/intobject.c
@@ -1069,7 +1069,7 @@ int_true_divide, /* nb_true_divide */ 0, /* nb_inplace_floor_divide */ 0, /* nb_inplace_true_divide */ - (lenfunc)PyInt_AsSsize_t, /* nb_index */ + PyInt_AsSsize_t, /* nb_index */ }; PyTypeObject PyInt_Type = {