summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorLarry Hastings <larry@hastings.org>2010-03-25 01:23:27 (GMT)
committerLarry Hastings <larry@hastings.org>2010-03-25 01:23:27 (GMT)
commit4e9830f7ac7fac2e6b53d41edf6d8e1bd8576f4f (patch)
tree7967c8f1cd9c39e26559f93dd0bdb3af0f9b9083 /Include
parentc1f842b532bc993429208871a43b9f67fd895897 (diff)
downloadcpython-4e9830f7ac7fac2e6b53d41edf6d8e1bd8576f4f.zip
cpython-4e9830f7ac7fac2e6b53d41edf6d8e1bd8576f4f.tar.gz
cpython-4e9830f7ac7fac2e6b53d41edf6d8e1bd8576f4f.tar.bz2
Remove extraneous experimental code checked in by accident.
Diffstat (limited to 'Include')
-rw-r--r--Include/pycapsule.h92
1 files changed, 0 insertions, 92 deletions
diff --git a/Include/pycapsule.h b/Include/pycapsule.h
index 2cc1c73..cd682fc 100644
--- a/Include/pycapsule.h
+++ b/Include/pycapsule.h
@@ -50,98 +50,6 @@ PyAPI_FUNC(int) PyCapsule_SetContext(PyObject *capsule, void *context);
PyAPI_FUNC(void *) PyCapsule_Import(const char *name, int no_block);
-
-#define PYTHON_USING_CAPSULE
-
-#define PYCAPSULE_INSTANTIATE_DESTRUCTOR(name, destructor) \
-static void pycapsule_destructor_ ## name(PyObject *ptr) \
-{ \
- void *p = PyCapsule_GetPointer(ptr, name); \
- if (p) { \
- destructor(p); \
- } \
-} \
-
-#define PYCAPSULE_NEW(pointer, name) \
- (PyCapsule_New(pointer, name, capsule_destructor_ ## name))
-
-#define PYCAPSULE_ISVALID(capsule, name) \
- (PyCapsule_IsValid(capsule, name))
-
-#define PYCAPSULE_DEREFERENCE(capsule, name) \
- (PyCapsule_GetPointer(capsule, name))
-
-#define PYCAPSULE_SET(capsule, name, value) \
- (PyCapsule_IsValid(capsule, name) && PyCapsule_SetPointer(capsule, value))
-
-/* module and attribute should be specified as string constants */
-#define PYCAPSULE_IMPORT(module, attribute) \
- (PyCapsule_Import(module "." attribute, 0))
-
-
-/* begin public-domain code */
-/*
-** This code was written by Larry Hastings,
-** and is dedicated to the public domain.
-** It's designed to make it easy to switch
-** from CObject to Capsule objects without losing
-** backwards compatibility with prior versions
-** of CPython. You're encouraged to copy this code
-** (including this documentation) into your
-** Python C extension.
-**
-** To use:
-** * #define a name for the pointer you store in
-** the CObject. If you make the CObject available
-** as part of your module's API, this name should
-** be "modulename.attributename", and it should be
-** considered part of your API (so put it in your
-** header file).
-** * Specify a PYCAPSULE_INSTANTIATE_DESTRUCTOR(), in
-** every C file that creates these CObjects. This
-** is where you specify your object's destructor.
-** * Change all calls to CObject_FromVoidPtr()
-** and CObject_FromVoidPointerAndDesc() into
-** PYCAPSULE_NEW() calls.
-** * Change all calls to PyCObject_AsVoidPtr()
-** into PYCAPSULE_DEREFERENCE() calls.
-** * Change all calls to PyCObject_SetVoidPtr()
-** into PYCAPSULE_SET() calls.
-** * Change all calls to PyCObject_Import()
-** into PYCAPSULE_IMPORT() calls. Note that
-** the two arguments to PYCAPSULE_IMPORT()
-** should both be string constants; that is,
-** you should call
-** PYCAPSULE_IMPORT("modulename", "attributename"),
-** not PYCAPSULE_IMPORT(charstar1, charstar2).
-*/
-#ifndef PYTHON_USING_CAPSULE
-
-#define PYCAPSULE_INSTANTIATE_DESTRUCTOR(name, destructor) \
-static void pycapsule_destructor_ ## name(void *ptr) \
-{ \
- destructor(p); \
-} \
-
-#define PYCAPSULE_NEW(pointer, name) \
- (PyCObject_FromVoidPtr(pointer, pycapsule_destructor_ ## name))
-
-#define PYCAPSULE_ISVALID(capsule, name) \
- (PyCObject_Check(capsule))
-
-#define PYCAPSULE_DEREFERENCE(capsule, name) \
- (PyCObject_AsVoidPtr(capsule))
-
-#define PYCAPSULE_SET(capsule, name, value) \
- (PyCObject_SetVoidPtr(capsule, value))
-
-/* module and attribute should be specified as string constants */
-#define PYCAPSULE_IMPORT(module, attribute) \
- (PyCObject_Import(module, attribute))
-
-#endif /* PYTHON_USING_CAPSULE */
-/* end public-domain code */
-
#ifdef __cplusplus
}
#endif