diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2002-08-05 15:36:57 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2002-08-05 15:36:57 (GMT) |
commit | ff8dec7427ac1084ea375bbf904e365138b69aae (patch) | |
tree | 87a4c988fc8375b1052a7819e166ca445cfbf760 /Mac/Modules/waste | |
parent | a4741ffe63940709b45992f463bca8f59c259843 (diff) | |
download | cpython-ff8dec7427ac1084ea375bbf904e365138b69aae.zip cpython-ff8dec7427ac1084ea375bbf904e365138b69aae.tar.gz cpython-ff8dec7427ac1084ea375bbf904e365138b69aae.tar.bz2 |
Got rid of staticforward.
Diffstat (limited to 'Mac/Modules/waste')
-rw-r--r-- | Mac/Modules/waste/wastesupport.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Mac/Modules/waste/wastesupport.py b/Mac/Modules/waste/wastesupport.py index 35261cf..40701c5 100644 --- a/Mac/Modules/waste/wastesupport.py +++ b/Mac/Modules/waste/wastesupport.py @@ -73,8 +73,8 @@ extern PyObject *AEDesc_New(AppleEvent *); extern int AEDesc_Convert(PyObject *, AppleEvent *); /* Forward declaration */ -staticforward PyObject *WEOObj_New(WEObjectReference); -staticforward PyObject *ExistingwasteObj_New(WEReference); +static PyObject *WEOObj_New(WEObjectReference); +static PyObject *ExistingwasteObj_New(WEReference); /* ** Parse/generate TextStyle records |