diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2000-05-15 15:36:52 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2000-05-15 15:36:52 (GMT) |
commit | d9c01a56a0c824670591f7b2375b4c27e25b6269 (patch) | |
tree | 59c2b9c99fae5e2a0c82aa09dac634b9a752896e /Mac/Modules/htmlrender/htmlscan.py | |
parent | 036194ceb4aae52f18a9896b5787c1405d218413 (diff) | |
download | cpython-d9c01a56a0c824670591f7b2375b4c27e25b6269.zip cpython-d9c01a56a0c824670591f7b2375b4c27e25b6269.tar.gz cpython-d9c01a56a0c824670591f7b2375b4c27e25b6269.tar.bz2 |
Manually added HRHTMLRenderingLibAvailable.
Blacklist HRDisposeReference and call it in the dispose routine.
Diffstat (limited to 'Mac/Modules/htmlrender/htmlscan.py')
-rw-r--r-- | Mac/Modules/htmlrender/htmlscan.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Mac/Modules/htmlrender/htmlscan.py b/Mac/Modules/htmlrender/htmlscan.py index ae31c37..db62858 100644 --- a/Mac/Modules/htmlrender/htmlscan.py +++ b/Mac/Modules/htmlrender/htmlscan.py @@ -14,7 +14,7 @@ OBJECT = "HRReference" def main(): ## input = LONG + ".h" - input = "Macintosh HD:SWdev:Jack:Universal:Interfaces:CIncludes:HTMLRendering.h" + input = "Macintosh HD:ufs:jack:SWdev:Universal:Interfaces:CIncludes:HTMLRendering.h" output = SHORT + "gen.py" defsoutput = TOOLBOXDIR + LONG + ".py" scanner = MyScanner(input, output, defsoutput) @@ -38,6 +38,7 @@ class MyScanner(Scanner): def makeblacklistnames(self): return [ + "HRDisposeReference", ] def makeblacklisttypes(self): |