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 | |
parent | Remove Py_Refcnt, Py_Type, Py_Size, as they were added only (diff) | |
download | cpython-83c9201465ff2549119d52738582312fafd1b63c.tar.gz cpython-83c9201465ff2549119d52738582312fafd1b63c.tar.bz2 cpython-83c9201465ff2549119d52738582312fafd1b63c.zip |
Fix typo.
Diffstat (limited to 'Modules')
-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 7d05b24ed1d..dc9742725ba 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 |