diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2008-04-24 13:17:24 +0000 |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2008-04-24 13:17:24 +0000 |
commit | 83c9201465ff2549119d52738582312fafd1b63c (patch) | |
tree | 6c5aa81d3bb2814e043dddb92bafe5ca749d0669 /Modules/_bsddb.c | |
parent | 19dfa3e71a79c33a1060826f39ac2c6c990dd19d (diff) | |
download | cpython-git-83c9201465ff2549119d52738582312fafd1b63c.tar.gz |
Fix typo.
Diffstat (limited to 'Modules/_bsddb.c')
-rw-r--r-- | Modules/_bsddb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_bsddb.c b/Modules/_bsddb.c index 7d05b24ed1..dc9742725b 100644 --- a/Modules/_bsddb.c +++ b/Modules/_bsddb.c @@ -203,7 +203,7 @@ static PyObject* DBPermissionsError; /* EPERM */ staticforward PyTypeObject DB_Type, DBCursor_Type, DBEnv_Type, DBTxn_Type, DBLock_Type; -#ifndef Py_Type +#ifndef Py_TYPE /* for compatibility with Python 2.5 and earlier */ #define Py_TYPE(ob) (((PyObject*)(ob))->ob_type) #endif |