diff options
author | Larry Hastings <larry@hastings.org> | 2010-03-25 00:54:54 (GMT) |
---|---|---|
committer | Larry Hastings <larry@hastings.org> | 2010-03-25 00:54:54 (GMT) |
commit | 402b73fb8d54ec2b24b52fdd77d389d903fa6c44 (patch) | |
tree | ced928b7f7dce754142742e485ed8e836fbc9486 /PC/os2vacpp | |
parent | 53ff86ea5f0ed27f5eb5b966faf59dac298d6672 (diff) | |
download | cpython-402b73fb8d54ec2b24b52fdd77d389d903fa6c44.zip cpython-402b73fb8d54ec2b24b52fdd77d389d903fa6c44.tar.gz cpython-402b73fb8d54ec2b24b52fdd77d389d903fa6c44.tar.bz2 |
Backported PyCapsule from 3.1, and converted most uses of
CObject to PyCapsule.
Diffstat (limited to 'PC/os2vacpp')
-rw-r--r-- | PC/os2vacpp/python.def | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/PC/os2vacpp/python.def b/PC/os2vacpp/python.def index e8064f3..76d56cd 100644 --- a/PC/os2vacpp/python.def +++ b/PC/os2vacpp/python.def @@ -6,6 +6,7 @@ DATA MULTIPLE NONSHARED EXPORTS ; Data PyCFunction_Type + PyCapsule_Type PyCObject_Type PyClass_Type PyCode_Type @@ -75,6 +76,7 @@ EXPORTS _Py_TrueStruct _Py_ZeroStruct _Py_abstract_hack + _Py_capsule_hack _Py_cobject_hack _Py_re_syntax _Py_re_syntax_table @@ -89,6 +91,17 @@ EXPORTS PyCFunction_GetFunction PyCFunction_GetSelf PyCFunction_New + PyCapsule_GetContext + PyCapsule_GetDestructor + PyCapsule_GetName + PyCapsule_GetPointer + PyCapsule_Import + PyCapsule_IsValid + PyCapsule_New + PyCapsule_SetContext + PyCapsule_SetDestructor + PyCapsule_SetName + PyCapsule_SetPointer PyCObject_AsVoidPtr PyCObject_FromVoidPtrAndDesc PyCObject_FromVoidPtr |