[Python-3000-checkins] r63064 - python/branches/py3k/Include/code.h

georg.brandl python-3000-checkins at python.org
Sun May 11 16:42:16 CEST 2008


Author: georg.brandl
Date: Sun May 11 16:42:16 2008
New Revision: 63064

Log:
Remove old macro that isn't used anywhere anymore.


Modified:
   python/branches/py3k/Include/code.h

Modified: python/branches/py3k/Include/code.h
==============================================================================
--- python/branches/py3k/Include/code.h	(original)
+++ python/branches/py3k/Include/code.h	Sun May 11 16:42:16 2008
@@ -73,10 +73,6 @@
 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;


More information about the Python-3000-checkins mailing list