Issue #1717, continued: remove PyObject_Compare and Py_CmpToRich declarations
from object.h; don't inherit tp_compare slot on subclasses; and raise TypeError when initializing a type that has a nonzero tp_compare slot. Fix up comparison-related comments in object.c and code.h.
This commit is contained in:
parent
f02e0aaafd
commit
c008a176af
|
@ -20,7 +20,7 @@ typedef struct {
|
||||||
PyObject *co_varnames; /* tuple of strings (local variable names) */
|
PyObject *co_varnames; /* tuple of strings (local variable names) */
|
||||||
PyObject *co_freevars; /* tuple of strings (free variable names) */
|
PyObject *co_freevars; /* tuple of strings (free variable names) */
|
||||||
PyObject *co_cellvars; /* tuple of strings (cell variable names) */
|
PyObject *co_cellvars; /* tuple of strings (cell variable names) */
|
||||||
/* The rest doesn't count for hash/cmp */
|
/* The rest doesn't count for hash or comparisons */
|
||||||
PyObject *co_filename; /* unicode (where it was loaded from) */
|
PyObject *co_filename; /* unicode (where it was loaded from) */
|
||||||
PyObject *co_name; /* unicode (name, for reference) */
|
PyObject *co_name; /* unicode (name, for reference) */
|
||||||
int co_firstlineno; /* first source line number */
|
int co_firstlineno; /* first source line number */
|
||||||
|
|
|
@ -426,10 +426,8 @@ PyAPI_FUNC(PyObject *) PyObject_Repr(PyObject *);
|
||||||
PyAPI_FUNC(PyObject *) PyObject_Str(PyObject *);
|
PyAPI_FUNC(PyObject *) PyObject_Str(PyObject *);
|
||||||
PyAPI_FUNC(PyObject *) PyObject_ASCII(PyObject *);
|
PyAPI_FUNC(PyObject *) PyObject_ASCII(PyObject *);
|
||||||
PyAPI_FUNC(PyObject *) PyObject_Bytes(PyObject *);
|
PyAPI_FUNC(PyObject *) PyObject_Bytes(PyObject *);
|
||||||
PyAPI_FUNC(int) PyObject_Compare(PyObject *, PyObject *);
|
|
||||||
PyAPI_FUNC(PyObject *) PyObject_RichCompare(PyObject *, PyObject *, int);
|
PyAPI_FUNC(PyObject *) PyObject_RichCompare(PyObject *, PyObject *, int);
|
||||||
PyAPI_FUNC(int) PyObject_RichCompareBool(PyObject *, PyObject *, int);
|
PyAPI_FUNC(int) PyObject_RichCompareBool(PyObject *, PyObject *, int);
|
||||||
PyAPI_FUNC(PyObject *) Py_CmpToRich(int op, int cmp);
|
|
||||||
PyAPI_FUNC(PyObject *) PyObject_GetAttrString(PyObject *, const char *);
|
PyAPI_FUNC(PyObject *) PyObject_GetAttrString(PyObject *, const char *);
|
||||||
PyAPI_FUNC(int) PyObject_SetAttrString(PyObject *, const char *, PyObject *);
|
PyAPI_FUNC(int) PyObject_SetAttrString(PyObject *, const char *, PyObject *);
|
||||||
PyAPI_FUNC(int) PyObject_HasAttrString(PyObject *, const char *);
|
PyAPI_FUNC(int) PyObject_HasAttrString(PyObject *, const char *);
|
||||||
|
|
|
@ -12,9 +12,11 @@ What's New in Python 3.1 alpha 0
|
||||||
Core and Builtins
|
Core and Builtins
|
||||||
-----------------
|
-----------------
|
||||||
|
|
||||||
- Issue #1717: Remove builtin cmp() function, C-API functions
|
- Issue #1717: Removed builtin cmp() function, dropped tp_compare
|
||||||
PyObject_Cmp and PyObject_Compare, and the support function
|
slot, the C API functions PyObject_Compare and PyUnicode_Compare and
|
||||||
Py_CmpToRich.
|
the type definition cmpfunc. The tp_compare slot is reserved for
|
||||||
|
future usage. An attempt to initialize a type with a nonzero
|
||||||
|
tp_compare slot will raise TypeError.
|
||||||
|
|
||||||
- Issue #4707: round(x, n) now returns an integer if x is an integer.
|
- Issue #4707: round(x, n) now returns an integer if x is an integer.
|
||||||
Previously it returned a float.
|
Previously it returned a float.
|
||||||
|
|
|
@ -500,35 +500,19 @@ PyObject_Bytes(PyObject *v)
|
||||||
return PyBytes_FromObject(v);
|
return PyBytes_FromObject(v);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* The new comparison philosophy is: we completely separate three-way
|
/* For Python 3.0.1 and later, the old three-way comparison has been
|
||||||
comparison from rich comparison. That is, PyObject_Compare() and
|
completely removed in favour of rich comparisons. PyObject_Compare() and
|
||||||
PyObject_Cmp() *just* use the tp_compare slot. And PyObject_RichCompare()
|
PyObject_Cmp() are gone, and the builtin cmp function no longer exists.
|
||||||
and PyObject_RichCompareBool() *just* use the tp_richcompare slot.
|
The old tp_compare slot will be renamed to tp_reserved, and should no
|
||||||
|
longer be used. Use tp_richcompare instead.
|
||||||
|
|
||||||
See (*) below for practical amendments.
|
See (*) below for practical amendments.
|
||||||
|
|
||||||
IOW, only cmp() uses tp_compare; the comparison operators (==, !=, <=, <,
|
tp_richcompare gets called with a first argument of the appropriate type
|
||||||
>=, >) only use tp_richcompare. Note that list.sort() only uses <.
|
and a second object of an arbitrary type. We never do any kind of
|
||||||
|
coercion.
|
||||||
|
|
||||||
(And yes, eventually we'll rip out cmp() and tp_compare.)
|
The tp_richcompare slot should return an object, as follows:
|
||||||
|
|
||||||
The calling conventions are different: tp_compare only gets called with two
|
|
||||||
objects of the appropriate type; tp_richcompare gets called with a first
|
|
||||||
argument of the appropriate type and a second object of an arbitrary type.
|
|
||||||
We never do any kind of coercion.
|
|
||||||
|
|
||||||
The return conventions are also different.
|
|
||||||
|
|
||||||
The tp_compare slot should return a C int, as follows:
|
|
||||||
|
|
||||||
-1 if a < b or if an exception occurred
|
|
||||||
0 if a == b
|
|
||||||
+1 if a > b
|
|
||||||
|
|
||||||
No other return values are allowed. PyObject_Compare() has the same
|
|
||||||
calling convention.
|
|
||||||
|
|
||||||
The tp_richcompare slot should return an object, as follows:
|
|
||||||
|
|
||||||
NULL if an exception occurred
|
NULL if an exception occurred
|
||||||
NotImplemented if the requested comparison is not implemented
|
NotImplemented if the requested comparison is not implemented
|
||||||
|
@ -544,9 +528,6 @@ PyObject_Bytes(PyObject *v)
|
||||||
comparing the object pointer (i.e. falling back to the base object
|
comparing the object pointer (i.e. falling back to the base object
|
||||||
implementation).
|
implementation).
|
||||||
|
|
||||||
- If three-way comparison is not implemented, it falls back on rich
|
|
||||||
comparison (but not the other way around!).
|
|
||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/* Map rich comparison operators to their swapped version, e.g. LT <--> GT */
|
/* Map rich comparison operators to their swapped version, e.g. LT <--> GT */
|
||||||
|
|
|
@ -3662,7 +3662,7 @@ inherit_slots(PyTypeObject *type, PyTypeObject *base)
|
||||||
type->tp_setattr = base->tp_setattr;
|
type->tp_setattr = base->tp_setattr;
|
||||||
type->tp_setattro = base->tp_setattro;
|
type->tp_setattro = base->tp_setattro;
|
||||||
}
|
}
|
||||||
/* tp_compare see tp_richcompare */
|
/* tp_compare is ignored, see tp_richcompare */
|
||||||
COPYSLOT(tp_repr);
|
COPYSLOT(tp_repr);
|
||||||
/* tp_hash see tp_richcompare */
|
/* tp_hash see tp_richcompare */
|
||||||
COPYSLOT(tp_call);
|
COPYSLOT(tp_call);
|
||||||
|
@ -3670,12 +3670,10 @@ inherit_slots(PyTypeObject *type, PyTypeObject *base)
|
||||||
{
|
{
|
||||||
/* Copy comparison-related slots only when
|
/* Copy comparison-related slots only when
|
||||||
not overriding them anywhere */
|
not overriding them anywhere */
|
||||||
if (type->tp_compare == NULL &&
|
if (type->tp_richcompare == NULL &&
|
||||||
type->tp_richcompare == NULL &&
|
|
||||||
type->tp_hash == NULL &&
|
type->tp_hash == NULL &&
|
||||||
!overrides_hash(type))
|
!overrides_hash(type))
|
||||||
{
|
{
|
||||||
type->tp_compare = base->tp_compare;
|
|
||||||
type->tp_richcompare = base->tp_richcompare;
|
type->tp_richcompare = base->tp_richcompare;
|
||||||
type->tp_hash = base->tp_hash;
|
type->tp_hash = base->tp_hash;
|
||||||
}
|
}
|
||||||
|
@ -3888,6 +3886,13 @@ PyType_Ready(PyTypeObject *type)
|
||||||
goto error;
|
goto error;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Check reserved slots */
|
||||||
|
if (type->tp_compare) {
|
||||||
|
PyErr_Format(PyExc_TypeError,
|
||||||
|
"type %s has tp_compare",
|
||||||
|
type->tp_name);
|
||||||
|
}
|
||||||
|
|
||||||
/* All done -- set the ready flag */
|
/* All done -- set the ready flag */
|
||||||
assert(type->tp_dict != NULL);
|
assert(type->tp_dict != NULL);
|
||||||
type->tp_flags =
|
type->tp_flags =
|
||||||
|
|
Loading…
Reference in New Issue