summaryrefslogtreecommitdiffstats
path: root/Modules/_bsddb.c
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2006-03-22 09:28:35 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2006-03-22 09:28:35 (GMT)
commit227b5339edcdcc9ca6322a2217b75db11b69048f (patch)
tree8829d0c1b2ac9474b386499ca0fda37700f72bd8 /Modules/_bsddb.c
parent914a81841f881122f95eb5a9330a3ef96de174cd (diff)
downloadcpython-227b5339edcdcc9ca6322a2217b75db11b69048f.zip
cpython-227b5339edcdcc9ca6322a2217b75db11b69048f.tar.gz
cpython-227b5339edcdcc9ca6322a2217b75db11b69048f.tar.bz2
Finish getting rid of statichere/staticforward
Diffstat (limited to 'Modules/_bsddb.c')
-rw-r--r--Modules/_bsddb.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/Modules/_bsddb.c b/Modules/_bsddb.c
index 9d0893e..8e9ec0f 100644
--- a/Modules/_bsddb.c
+++ b/Modules/_bsddb.c
@@ -283,7 +283,7 @@ typedef struct {
-staticforward PyTypeObject DB_Type, DBCursor_Type, DBEnv_Type, DBTxn_Type, DBLock_Type;
+static PyTypeObject DB_Type, DBCursor_Type, DBEnv_Type, DBTxn_Type, DBLock_Type;
#define DBObject_Check(v) ((v)->ob_type == &DB_Type)
#define DBCursorObject_Check(v) ((v)->ob_type == &DBCursor_Type)
@@ -4823,7 +4823,7 @@ DBLock_getattr(DBLockObject* self, char *name)
return NULL;
}
-statichere PyTypeObject DB_Type = {
+static PyTypeObject DB_Type = {
PyObject_HEAD_INIT(NULL)
0, /*ob_size*/
"DB", /*tp_name*/
@@ -4856,7 +4856,7 @@ statichere PyTypeObject DB_Type = {
};
-statichere PyTypeObject DBCursor_Type = {
+static PyTypeObject DBCursor_Type = {
PyObject_HEAD_INIT(NULL)
0, /*ob_size*/
"DBCursor", /*tp_name*/
@@ -4889,7 +4889,7 @@ statichere PyTypeObject DBCursor_Type = {
};
-statichere PyTypeObject DBEnv_Type = {
+static PyTypeObject DBEnv_Type = {
PyObject_HEAD_INIT(NULL)
0, /*ob_size*/
"DBEnv", /*tp_name*/
@@ -4921,7 +4921,7 @@ statichere PyTypeObject DBEnv_Type = {
#endif
};
-statichere PyTypeObject DBTxn_Type = {
+static PyTypeObject DBTxn_Type = {
PyObject_HEAD_INIT(NULL)
0, /*ob_size*/
"DBTxn", /*tp_name*/
@@ -4954,7 +4954,7 @@ statichere PyTypeObject DBTxn_Type = {
};
-statichere PyTypeObject DBLock_Type = {
+static PyTypeObject DBLock_Type = {
PyObject_HEAD_INIT(NULL)
0, /*ob_size*/
"DBLock", /*tp_name*/