]> granicus.if.org Git - python/commitdiff
Moved customization to bgenlocations.py module.
authorGuido van Rossum <guido@python.org>
Fri, 12 Apr 1996 16:39:00 +0000 (16:39 +0000)
committerGuido van Rossum <guido@python.org>
Fri, 12 Apr 1996 16:39:00 +0000 (16:39 +0000)
Tools/bgen/bgen/bgenlocations.py [new file with mode: 0644]
Tools/bgen/bgen/scantools.py

diff --git a/Tools/bgen/bgen/bgenlocations.py b/Tools/bgen/bgen/bgenlocations.py
new file mode 100644 (file)
index 0000000..3ec9c05
--- /dev/null
@@ -0,0 +1,12 @@
+#
+# Local customizations
+#
+
+# Where to find the Universal Header include files:
+INCLUDEDIR="Sap:CW8 Gold:Metrowerks CodeWarrior:MacOS Support:Headers:Universal Headers:"
+
+# Where to put the python definitions file:
+TOOLBOXDIR="Moes:Development:Jack:Python 1.3:Mac:Lib:toolbox:"
+
+# Creator for C files:
+CREATOR="CWIE"
index baed1d9e858cf99df547155ddc46ca190574db6a..ec5c733ebbfc42672d86f0dacb5a5d1ca4560bad 100644 (file)
@@ -26,12 +26,7 @@ try:
 except ImportError:
        MacOS = None
 
-# Default preferences
-#CREATOR = 'KAHL'              # Guido's favorite text editor on the Mac
-#INCLUDEDIR = "D:Development:THINK C:Mac #includes:Apple #includes:"
-CREATOR = 'CWIE'               # Jack's favorite text editor on the Mac
-INCLUDEDIR = "Sap:CodeWarrior7:Metrowerks CodeWarrior:MacOS Support:Headers:Universal Headers:"
-
+from bgenlocations import CREATOR, INCLUDEDIR
 
 Error = "scantools.Error"