diff -r cc9e5ead50d1 Cython/Compiler/Parsing.py --- a/Cython/Compiler/Parsing.py Mon Nov 17 14:35:05 2008 +0100 +++ b/Cython/Compiler/Parsing.py Mon Nov 17 23:56:02 2008 -0300 @@ -4,8 +4,8 @@ # # This should be done automatically -import cython -cython.declare(Nodes=object, ExprNodes=object, EncodedString=object) +## import cython +## cython.declare(Nodes=object, ExprNodes=object, EncodedString=object) import os import re diff -r cc9e5ead50d1 Cython/Compiler/Scanning.py --- a/Cython/Compiler/Scanning.py Mon Nov 17 14:35:05 2008 +0100 +++ b/Cython/Compiler/Scanning.py Mon Nov 17 23:56:02 2008 -0300 @@ -11,8 +11,8 @@ import sys from time import time -import cython -cython.declare(EncodedString=object, string_prefixes=object, raw_prefixes=object, IDENT=object) +## import cython +## cython.declare(EncodedString=object, string_prefixes=object, raw_prefixes=object, IDENT=object) from Cython import Plex, Utils from Cython.Plex.Scanners import Scanner @@ -171,7 +171,7 @@ d[word] = 1 return d -cython.declare(resword_dict=object) +## cython.declare(resword_dict=object) resword_dict = build_resword_dict() #------------------------------------------------------------------ diff -r cc9e5ead50d1 Cython/Plex/Scanners.py --- a/Cython/Plex/Scanners.py Mon Nov 17 14:35:05 2008 +0100 +++ b/Cython/Plex/Scanners.py Mon Nov 17 23:56:02 2008 -0300 @@ -10,7 +10,7 @@ import Errors from Regexps import BOL, EOL, EOF -import cython +## import cython class Scanner: """