Mercurial > hg > vampy
comparison PyOutputDescriptor.h @ 79:f5c028376bf9
Some old changes that, I think, probably did not help anything
author | Chris Cannam |
---|---|
date | Wed, 12 Aug 2015 15:25:04 +0100 |
parents | 27bab3a16c9a |
children |
comparison
equal
deleted
inserted
replaced
78:e101ff25d757 | 79:f5c028376bf9 |
---|---|
17 typedef struct { | 17 typedef struct { |
18 PyObject_HEAD | 18 PyObject_HEAD |
19 PyObject *dict; | 19 PyObject *dict; |
20 } OutputDescriptorObject; | 20 } OutputDescriptorObject; |
21 | 21 |
22 PyAPI_DATA(PyTypeObject) OutputDescriptor_Type; | 22 extern PyTypeObject OutputDescriptor_Type; |
23 | 23 |
24 #define PyOutputDescriptor_CheckExact(v) ((v)->ob_type == &OutputDescriptor_Type) | 24 #define PyOutputDescriptor_CheckExact(v) ((v)->ob_type == &OutputDescriptor_Type) |
25 #define PyOutputDescriptor_Check(v) PyObject_TypeCheck(v, &OutputDescriptor_Type) | 25 #define PyOutputDescriptor_Check(v) PyObject_TypeCheck(v, &OutputDescriptor_Type) |
26 | 26 |
27 /* PyOutputDescriptor C++ API */ | 27 /* PyOutputDescriptor C++ API */ |