Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • tests/pybin/settings.py

    r767a8ef re173d3c  
    102102                        self.target = ast
    103103                        self.string = "New AST"
    104                         self.flags  = """AST_FLAGS=-XCFA,--new-ast"""
     104                        self.flags  = """"""
    105105                elif ast == "old":
    106106                        self.target = ast
    107107                        self.string = "Old AST"
    108                         self.flags  = """AST_FLAGS=-XCFA,--old-ast"""
     108                        self.flags  = """"""
    109109                elif ast == None:
    110110                        self.target = "new" if config.NEWAST else "old"
    111111                        self.string = "Default AST (%s)" % self.target
    112                         self.flags  = """AST_FLAGS="""
     112                        self.flags  = """"""
    113113                else:
    114114                        print("""ERROR: Invalid ast configuration, must be "old", "new" or left unspecified, was %s""" % (value), file=sys.stderr)
Note: See TracChangeset for help on using the changeset viewer.