diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-09-10 23:37:46 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-09-10 23:37:46 (GMT) |
commit | 4c3a0a35cd80a0abb9628dc8d4ade911fe2d5015 (patch) | |
tree | 49f95befcf411f7d2dd31df46cd0e67c4353a8e7 /Include/tupleobject.h | |
parent | caaff8d95d750afb4d66b9caece087b191219eb7 (diff) | |
download | cpython-4c3a0a35cd80a0abb9628dc8d4ade911fe2d5015.zip cpython-4c3a0a35cd80a0abb9628dc8d4ade911fe2d5015.tar.gz cpython-4c3a0a35cd80a0abb9628dc8d4ade911fe2d5015.tar.bz2 |
More on SF bug [#460020] bug or feature: unicode() and subclasses.
tuple(i) repaired to return a true tuple when i is an instance of a
tuple subclass.
Added PyTuple_CheckExact macro.
PySequence_Tuple(): if a tuple-like object isn't exactly a tuple, it's
not safe to return the object as-is -- make a new tuple of it instead.
Diffstat (limited to 'Include/tupleobject.h')
-rw-r--r-- | Include/tupleobject.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Include/tupleobject.h b/Include/tupleobject.h index 3da3fe0..c5ec1c2 100644 --- a/Include/tupleobject.h +++ b/Include/tupleobject.h @@ -27,6 +27,7 @@ typedef struct { extern DL_IMPORT(PyTypeObject) PyTuple_Type; #define PyTuple_Check(op) PyObject_TypeCheck(op, &PyTuple_Type) +#define PyTuple_CheckExact(op) ((op)->ob_type == &PyTuple_Type) extern DL_IMPORT(PyObject *) PyTuple_New(int size); extern DL_IMPORT(int) PyTuple_Size(PyObject *); |