diff options
author | Guido van Rossum <guido@python.org> | 1995-03-09 12:14:15 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1995-03-09 12:14:15 (GMT) |
commit | a320fd308c9c8ac4775f83d2b8edb9af90192741 (patch) | |
tree | 20841aeb0007baa8fa987efd6f0499baab36b8fd /Modules/stdwinmodule.c | |
parent | b6fe7048e710db1678db53c0b088f43abdb8c95f (diff) | |
download | cpython-a320fd308c9c8ac4775f83d2b8edb9af90192741.zip cpython-a320fd308c9c8ac4775f83d2b8edb9af90192741.tar.gz cpython-a320fd308c9c8ac4775f83d2b8edb9af90192741.tar.bz2 |
changes for MPW
Diffstat (limited to 'Modules/stdwinmodule.c')
-rw-r--r-- | Modules/stdwinmodule.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Modules/stdwinmodule.c b/Modules/stdwinmodule.c index b256695b..675b959 100644 --- a/Modules/stdwinmodule.c +++ b/Modules/stdwinmodule.c @@ -1141,7 +1141,7 @@ text_setattr(tp, name, v) return dictinsert(tp->t_attr, name, v); } -static typeobject Texttype = { +statichere typeobject Texttype = { OB_HEAD_INIT(&Typetype) 0, /*ob_size*/ "textedit", /*tp_name*/ @@ -1348,7 +1348,7 @@ menu_setattr(mp, name, v) return dictinsert(mp->m_attr, name, v); } -static typeobject Menutype = { +statichere typeobject Menutype = { OB_HEAD_INIT(&Typetype) 0, /*ob_size*/ "menu", /*tp_name*/ @@ -1505,7 +1505,7 @@ bitmap_setattr(bp, name, v) return dictinsert(bp->b_attr, name, v); } -static typeobject Bitmaptype = { +statichere typeobject Bitmaptype = { OB_HEAD_INIT(&Typetype) 0, /*ob_size*/ "bitmap", /*tp_name*/ @@ -1929,7 +1929,7 @@ window_setattr(wp, name, v) return dictinsert(wp->w_attr, name, v); } -static typeobject Windowtype = { +statichere typeobject Windowtype = { OB_HEAD_INIT(&Typetype) 0, /*ob_size*/ "window", /*tp_name*/ |