diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2002-08-15 22:05:58 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2002-08-15 22:05:58 (GMT) |
commit | 7ca993ed37f84491885cc2d96ae7d1a575a7a2f4 (patch) | |
tree | 80c403554e4c697ce730f22eab34e24255753262 /Mac/Modules/scrap | |
parent | 87eea88b5a198234cb18980d6f3a155de176ea6e (diff) | |
download | cpython-7ca993ed37f84491885cc2d96ae7d1a575a7a2f4.zip cpython-7ca993ed37f84491885cc2d96ae7d1a575a7a2f4.tar.gz cpython-7ca993ed37f84491885cc2d96ae7d1a575a7a2f4.tar.bz2 |
Fixed the bugs in the constant definitions, and in the code to test
them.
The FutureWarnings are still there, until a way has been found to
say "I know what I'm doing here when I say 0xff000000".
Diffstat (limited to 'Mac/Modules/scrap')
-rw-r--r-- | Mac/Modules/scrap/scrapscan.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Mac/Modules/scrap/scrapscan.py b/Mac/Modules/scrap/scrapscan.py index b54d09d..379ded3 100644 --- a/Mac/Modules/scrap/scrapscan.py +++ b/Mac/Modules/scrap/scrapscan.py @@ -19,8 +19,8 @@ def main(): scanner = MyScanner(input, output, defsoutput) scanner.scan() scanner.close() - print "=== Testing definitions output code ===" - execfile(defsoutput, {}, {}) +## print "=== Testing definitions output code ===" +## execfile(defsoutput, {}, {}) print "=== Done scanning and generating, now importing the generated code... ===" exec "import " + SHORT + "support" print "=== Done. It's up to you to compile it now! ===" |