Index: tuple.expose =================================================================== --- tuple.expose (revision 2837) +++ tuple.expose (working copy) @@ -6,7 +6,6 @@ expose_meth: :b __contains__ o expose_meth: :i __len__ expose_meth: __add__ o -expose_meth: __reduce__ expose_meth: __mul__ o expose_meth: __rmul__ o expose_meth: __getitem__ o Index: object.expose =================================================================== --- object.expose (revision 2837) +++ object.expose (working copy) @@ -6,7 +6,8 @@ expose_getset: __doc__ getDoc # exposed methods -expose_meth: :o __reduce__ +expose_meth: __reduce__ +expose_meth: __reduce_ex__ i? expose_meth: __str__ return self.__repr__(); expose_meth: __getattribute__ n{attribute name} Index: list.expose =================================================================== --- list.expose (revision 2837) +++ list.expose (working copy) @@ -18,7 +18,6 @@ expose_meth: __radd__ o expose_meth: __iadd__ o expose_meth: __imul__ o -expose_meth: __reduce__ expose_meth: __mul__ o expose_meth: __rmul__ o expose_meth: __hash__ Index: int.expose =================================================================== --- int.expose (revision 2837) +++ int.expose (working copy) @@ -13,7 +13,6 @@ expose_vanilla_pow expose_new_immutable: expose_meth: :b __nonzero__ -expose_meth: :o __reduce__ expose_meth: __repr__ return new PyString(self.int_toString()); expose_meth: __str__ Index: complex.expose =================================================================== --- complex.expose (revision 2837) +++ complex.expose (working copy) @@ -16,7 +16,6 @@ expose_new_immutable: expose_meth: conjugate expose_meth: :b __nonzero__ -expose_meth: :o __reduce__ expose_meth: __repr__ return new PyString(self.complex_toString()); expose_meth: __str__ Index: str.expose =================================================================== --- str.expose (revision 2837) +++ str.expose (working copy) @@ -10,7 +10,6 @@ expose_meth: __getslice__ ooo? expose_meth: __iter__ expose_meth: __mul__ o -expose_meth: __reduce__ expose_meth: __rmul__ o expose_meth: __str__ expose_meth: __unicode__