Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
nexedi
cython
Commits
497af27e
Commit
497af27e
authored
Oct 25, 2008
by
Stefan Behnel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Py2.4 requires some more definitions for the set type
parent
4148f516
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
9 deletions
+8
-9
Cython/Compiler/Builtin.py
Cython/Compiler/Builtin.py
+8
-9
No files found.
Cython/Compiler/Builtin.py
View file @
497af27e
...
@@ -169,6 +169,13 @@ py23_set_utility_code = ["""
...
@@ -169,6 +169,13 @@ py23_set_utility_code = ["""
((ob)->ob_type == ((PyTypeObject*)&PySet_Type) ||
\
((ob)->ob_type == ((PyTypeObject*)&PySet_Type) ||
\
(ob)->ob_type == ((PyTypeObject*)&PyFrozenSet_Type))
(ob)->ob_type == ((PyTypeObject*)&PyFrozenSet_Type))
#define PySet_New(iterable)
\
PyObject_CallFunctionObjArgs((PyObject *)PySet_Type, iterable, NULL)
#define Pyx_PyFrozenSet_New(iterable)
\
PyObject_CallFunctionObjArgs((PyObject *)PyFrozenSet_Type, iterable, NULL)
#define PySet_Size(anyset) PyObject_Size(anyset)
#define PySet_Contains(anyset, key) PySequence_Contains(anyset, key)
#define PySet_Pop(set) PyObject_CallMethod(set, "pop", NULL)
#define PySet_Pop(set) PyObject_CallMethod(set, "pop", NULL)
static INLINE int PySet_Clear(PyObject *set) {
static INLINE int PySet_Clear(PyObject *set) {
...
@@ -205,14 +212,6 @@ static PyTypeObject *PyFrozenSet_Type = NULL;
...
@@ -205,14 +212,6 @@ static PyTypeObject *PyFrozenSet_Type = NULL;
#define PyFrozenSet_CheckExact(ob) ((ob)->ob_type == &PyFrozenSet_Type)
#define PyFrozenSet_CheckExact(ob) ((ob)->ob_type == &PyFrozenSet_Type)
#define PySet_New(iterable)
\
PyObject_CallFunctionObjArgs((PyObject *)PySet_Type, iterable, NULL)
#define Pyx_PyFrozenSet_New(iterable)
\
PyObject_CallFunctionObjArgs((PyObject *)PyFrozenSet_Type, iterable, NULL)
#define PySet_Size(anyset) PyObject_Size(anyset)
#define PySet_Contains(anyset, key) PySequence_Contains(anyset, key)
/* ---------------------------------------------------------------- */
/* ---------------------------------------------------------------- */
static int __Pyx_Py23SetsImport(void) {
static int __Pyx_Py23SetsImport(void) {
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment