diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2008-04-24 13:17:24 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2008-04-24 13:17:24 (GMT) |
commit | 83c9201465ff2549119d52738582312fafd1b63c (patch) | |
tree | 6c5aa81d3bb2814e043dddb92bafe5ca749d0669 /Modules | |
parent | 19dfa3e71a79c33a1060826f39ac2c6c990dd19d (diff) | |
download | cpython-83c9201465ff2549119d52738582312fafd1b63c.zip cpython-83c9201465ff2549119d52738582312fafd1b63c.tar.gz cpython-83c9201465ff2549119d52738582312fafd1b63c.tar.bz2 |
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 7d05b24..dc97427 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 |