Index: Include/object.h =================================================================== --- Include/object.h (Revision 63771) +++ Include/object.h (Arbeitskopie) @@ -226,13 +226,9 @@ binaryfunc nb_and; binaryfunc nb_xor; binaryfunc nb_or; - int nb_reserved; /* unused, used to be nb_coerce */ unaryfunc nb_int; unaryfunc nb_long; unaryfunc nb_float; - /* NB: nb_oct and nb_hex are not used anymore. */ - unaryfunc nb_oct; - unaryfunc nb_hex; binaryfunc nb_inplace_add; binaryfunc nb_inplace_subtract; Index: Objects/complexobject.c =================================================================== --- Objects/complexobject.c (Revision 63771) +++ Objects/complexobject.c (Arbeitskopie) @@ -1066,12 +1066,9 @@ 0, /* nb_and */ 0, /* nb_xor */ 0, /* nb_or */ - 0, /* nb_reserved */ complex_int, /* nb_int */ complex_long, /* nb_long */ complex_float, /* nb_float */ - 0, /* nb_oct */ - 0, /* nb_hex */ 0, /* nb_inplace_add */ 0, /* nb_inplace_subtract */ 0, /* nb_inplace_multiply*/ Index: Objects/weakrefobject.c =================================================================== --- Objects/weakrefobject.c (Revision 63771) +++ Objects/weakrefobject.c (Arbeitskopie) @@ -594,12 +594,9 @@ proxy_and, /*nb_and*/ proxy_xor, /*nb_xor*/ proxy_or, /*nb_or*/ - 0, /*nb_reserved*/ proxy_int, /*nb_int*/ proxy_long, /*nb_long*/ proxy_float, /*nb_float*/ - 0, /*nb_oct*/ - 0, /*nb_hex*/ proxy_iadd, /*nb_inplace_add*/ proxy_isub, /*nb_inplace_subtract*/ proxy_imul, /*nb_inplace_multiply*/ Index: Objects/boolobject.c =================================================================== --- Objects/boolobject.c (Revision 63771) +++ Objects/boolobject.c (Arbeitskopie) @@ -108,12 +108,9 @@ bool_and, /* nb_and */ bool_xor, /* nb_xor */ bool_or, /* nb_or */ - 0, /* nb_reserved */ 0, /* nb_int */ 0, /* nb_long */ 0, /* nb_float */ - 0, /* nb_oct */ - 0, /* nb_hex */ 0, /* nb_inplace_add */ 0, /* nb_inplace_subtract */ 0, /* nb_inplace_multiply */ Index: Objects/setobject.c =================================================================== --- Objects/setobject.c (Revision 63771) +++ Objects/setobject.c (Arbeitskopie) @@ -1955,12 +1955,9 @@ (binaryfunc)set_and, /*nb_and*/ (binaryfunc)set_xor, /*nb_xor*/ (binaryfunc)set_or, /*nb_or*/ - 0, /*nb_reserved*/ 0, /*nb_int*/ 0, /*nb_long*/ 0, /*nb_float*/ - 0, /*nb_oct*/ - 0, /*nb_hex*/ 0, /*nb_inplace_add*/ (binaryfunc)set_isub, /*nb_inplace_subtract*/ 0, /*nb_inplace_multiply*/ Index: Objects/longobject.c =================================================================== --- Objects/longobject.c (Revision 63771) +++ Objects/longobject.c (Arbeitskopie) @@ -3699,12 +3699,9 @@ long_and, /*nb_and*/ long_xor, /*nb_xor*/ long_or, /*nb_or*/ - 0, /*nb_reserved*/ long_long, /*nb_int*/ long_long, /*nb_long*/ long_float, /*nb_float*/ - 0, /*nb_oct*/ /* not used */ - 0, /*nb_hex*/ /* not used */ 0, /* nb_inplace_add */ 0, /* nb_inplace_subtract */ 0, /* nb_inplace_multiply */ Index: Objects/floatobject.c =================================================================== --- Objects/floatobject.c (Revision 63771) +++ Objects/floatobject.c (Arbeitskopie) @@ -1380,12 +1380,9 @@ 0, /*nb_and*/ 0, /*nb_xor*/ 0, /*nb_or*/ - 0, /*nb_reserved*/ float_trunc, /*nb_int*/ float_trunc, /*nb_long*/ float_float, /*nb_float*/ - 0, /* nb_oct */ - 0, /* nb_hex */ 0, /* nb_inplace_add */ 0, /* nb_inplace_subtract */ 0, /* nb_inplace_multiply */ Index: PC/winreg.c =================================================================== --- PC/winreg.c (Revision 63771) +++ PC/winreg.c (Arbeitskopie) @@ -450,12 +450,9 @@ PyHKEY_binaryFailureFunc, /* nb_and */ PyHKEY_binaryFailureFunc, /* nb_xor */ PyHKEY_binaryFailureFunc, /* nb_or */ - 0, /* nb_reserved */ PyHKEY_intFunc, /* nb_int */ PyHKEY_unaryFailureFunc, /* nb_long */ PyHKEY_unaryFailureFunc, /* nb_float */ - PyHKEY_unaryFailureFunc, /* nb_oct */ - PyHKEY_unaryFailureFunc, /* nb_hex */ }; Index: Modules/datetimemodule.c =================================================================== --- Modules/datetimemodule.c (Revision 63771) +++ Modules/datetimemodule.c (Arbeitskopie) @@ -2103,12 +2103,9 @@ 0, /*nb_and*/ 0, /*nb_xor*/ 0, /*nb_or*/ - 0, /*nb_reserved*/ 0, /*nb_int*/ 0, /*nb_long*/ 0, /*nb_float*/ - 0, /*nb_oct*/ - 0, /*nb_hex*/ 0, /*nb_inplace_add*/ 0, /*nb_inplace_subtract*/ 0, /*nb_inplace_multiply*/