summaryrefslogtreecommitdiff
path: root/Include/frameobject.h
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1995-01-17 16:01:01 +0000
committerGuido van Rossum <guido@python.org>1995-01-17 16:01:01 +0000
commit938178283c29cdc2c8f5004d58dff110ac907883 (patch)
tree7d38251f32f2bb35f58e40aed465785f6f7039f4 /Include/frameobject.h
parent8e8a525f229ef6a9e1b881e9b71eda72dabd5007 (diff)
downloadcpython-git-938178283c29cdc2c8f5004d58dff110ac907883.tar.gz
new names for lots of new functions
Diffstat (limited to 'Include/frameobject.h')
-rw-r--r--Include/frameobject.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Include/frameobject.h b/Include/frameobject.h
index 19534d547b..949016a47b 100644
--- a/Include/frameobject.h
+++ b/Include/frameobject.h
@@ -72,7 +72,7 @@ PyFrameObject * PyFrame_New
/* The rest of the interface is specific for frame objects */
-/* List access macros */
+/* Tuple access macros */
#ifdef NDEBUG
#define GETITEM(v, i) PyTuple_GET_ITEM((PyTupleObject *)(v), (i))
@@ -103,8 +103,8 @@ PyObject **PyFrame_ExtendStack Py_PROTO((PyFrameObject *, int, int));
/* Conversions between "fast locals" and locals in dictionary */
-void locals_2_fast Py_PROTO((PyFrameObject *, int));
-void fast_2_locals Py_PROTO((PyFrameObject *));
+void PyFrame_LocalsToFast Py_PROTO((PyFrameObject *, int));
+void PyFrame_FastToLocals Py_PROTO((PyFrameObject *));
#ifdef __cplusplus
}