summaryrefslogtreecommitdiffstats
path: root/Mac/Modules/ibcarbon/IBCarbonscan.py
diff options
context:
space:
mode:
authorJack Jansen <jack.jansen@cwi.nl>2002-08-04 21:59:37 (GMT)
committerJack Jansen <jack.jansen@cwi.nl>2002-08-04 21:59:37 (GMT)
commitacbaefd796837ddd9be4c292bbd543be24de6001 (patch)
tree54e4c511a612e4b7d31fbb2af3a9a3d9e41135d1 /Mac/Modules/ibcarbon/IBCarbonscan.py
parent7ea8143fe518b07f14f492295918567ecb11ab83 (diff)
downloadcpython-acbaefd796837ddd9be4c292bbd543be24de6001.zip
cpython-acbaefd796837ddd9be4c292bbd543be24de6001.tar.gz
cpython-acbaefd796837ddd9be4c292bbd543be24de6001.tar.bz2
Updated to something that works on my system, and regenerated module.
Diffstat (limited to 'Mac/Modules/ibcarbon/IBCarbonscan.py')
-rw-r--r--Mac/Modules/ibcarbon/IBCarbonscan.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/Mac/Modules/ibcarbon/IBCarbonscan.py b/Mac/Modules/ibcarbon/IBCarbonscan.py
index 7c54fc9..9312629 100644
--- a/Mac/Modules/ibcarbon/IBCarbonscan.py
+++ b/Mac/Modules/ibcarbon/IBCarbonscan.py
@@ -5,7 +5,7 @@ import os
import string
import MacOS
-BGENDIR= '/Users/dp/python/dist/src/Tools/bgen/bgen'
+BGENDIR= '/Users/jack/src/python/Tools/bgen/bgen'
sys.path.append(BGENDIR)
print sys.path, sys.prefix
from bgenlocations import TOOLBOXDIR
@@ -25,6 +25,7 @@ def main():
print "done"
class IBCarbon_Scanner(Scanner_OSX):
+
def destination(self, type, name, arglist):
classname = "IBCarbonFunction"
listname = "functions"
@@ -40,6 +41,10 @@ class IBCarbon_Scanner(Scanner_OSX):
"DisposeNibReference", # taken care of by destructor
"CreateNibReferenceWithCFBundle", ## need to wrap CFBundle.h properly first
]
+
+ def makerepairinstructions(self):
+ return []
+
if __name__ == "__main__":
main()