diff options
author | Guido van Rossum <guido@python.org> | 1995-01-17 16:01:01 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-01-17 16:01:01 (GMT) |
commit | 938178283c29cdc2c8f5004d58dff110ac907883 (patch) | |
tree | 7d38251f32f2bb35f58e40aed465785f6f7039f4 /Include/dictobject.h | |
parent | 8e8a525f229ef6a9e1b881e9b71eda72dabd5007 (diff) | |
download | cpython-938178283c29cdc2c8f5004d58dff110ac907883.zip cpython-938178283c29cdc2c8f5004d58dff110ac907883.tar.gz cpython-938178283c29cdc2c8f5004d58dff110ac907883.tar.bz2 |
new names for lots of new functions
Diffstat (limited to 'Include/dictobject.h')
-rw-r--r-- | Include/dictobject.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/Include/dictobject.h b/Include/dictobject.h index a14661e..6c22093 100644 --- a/Include/dictobject.h +++ b/Include/dictobject.h @@ -32,20 +32,6 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #include "mappingobject.h" -#define PyDict_Check(op) is_mappingobject(op) - -#define newdictobject PyDict_New - -extern PyObject *PyDict_GetItemString Py_PROTO((PyObject *dp, char *key)); -extern int PyDict_SetItemString Py_PROTO((PyObject *dp, char *key, PyObject *item)); -extern int PyDict_DelItemString Py_PROTO((PyObject *dp, char *key)); - -#define getdictkeys PyDict_Keys - -#define dict2lookup PyDict_GetItem -#define dict2insert PyDict_SetItem -#define dict2remove PyDict_DelItem - #ifdef __cplusplus } #endif |