From: Georg Brandl Date: Sun, 11 May 2008 14:42:16 +0000 (+0000) Subject: Remove old macro that isn't used anywhere anymore. X-Git-Tag: v3.0b1~394 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=20a046cc5fd4118001e520aa6e73527f2d95d2c9;p=python Remove old macro that isn't used anywhere anymore. --- diff --git a/Include/code.h b/Include/code.h index a9b0708f8c..40cce180f5 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;