summaryrefslogtreecommitdiffstats
path: root/Include
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-05-11 14:42:16 (GMT)
committerGeorg Brandl <georg@python.org>2008-05-11 14:42:16 (GMT)
commit20a046cc5fd4118001e520aa6e73527f2d95d2c9 (patch)
treebf5026428c1069ba7bfa68c08f092599a95c331b /Include
parent95817b36f0310f21fa2ec4099db72596b3442c13 (diff)
downloadcpython-20a046cc5fd4118001e520aa6e73527f2d95d2c9.zip
cpython-20a046cc5fd4118001e520aa6e73527f2d95d2c9.tar.gz
cpython-20a046cc5fd4118001e520aa6e73527f2d95d2c9.tar.bz2
Remove old macro that isn't used anywhere anymore.
Diffstat (limited to 'Include')
-rw-r--r--Include/code.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/Include/code.h b/Include/code.h
index a9b0708..40cce18 100644
--- a/Include/code.h
+++ b/Include/code.h
@@ -73,10 +73,6 @@ PyAPI_FUNC(PyCodeObject *) PyCode_New(
PyAPI_FUNC(int) PyCode_Addr2Line(PyCodeObject *, int);
/* for internal use only */
-#define _PyCode_GETCODEPTR(co, pp) \
- ((*Py_TYPE((co)->co_code)->tp_as_buffer->bf_getreadbuffer) \
- ((co)->co_code, 0, (void **)(pp)))
-
typedef struct _addr_pair {
int ap_lower;
int ap_upper;