Commit 4d8c7c40 authored by Kevin Modzelewski's avatar Kevin Modzelewski

Missed one

parent 9aefa1a2
...@@ -37,7 +37,9 @@ typedef struct { ...@@ -37,7 +37,9 @@ typedef struct {
struct _PyTupleObject; struct _PyTupleObject;
typedef struct _PyTupleObject PyTupleObject; typedef struct _PyTupleObject PyTupleObject;
PyAPI_DATA(PyTypeObject) PyTuple_Type; // Pyston change: this is no longer a static object
PyAPI_DATA(PyTypeObject*) tuple_cls;
#define PyTuple_Type (*tuple_cls)
// Pyston changes: these aren't direct macros any more [they potentially could be though] // Pyston changes: these aren't direct macros any more [they potentially could be though]
PyAPI_FUNC(bool) PyTuple_Check(PyObject*); PyAPI_FUNC(bool) PyTuple_Check(PyObject*);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment