Remove trailing whitespace.
[cython.git] / Cython / Compiler / Interpreter.py
index 298041d012a37a9dd0648e3cbdbea77f0cd4c904..83cb184f96b21bdea9dec45e4142efef4b699cb7 100644 (file)
@@ -14,7 +14,7 @@ from Errors import CompileError
 class EmptyScope(object):
     def lookup(self, name):
         return None
-    
+
 empty_scope = EmptyScope()
 
 def interpret_compiletime_options(optlist, optdict, type_env=None, type_args=()):
@@ -45,7 +45,7 @@ def interpret_compiletime_options(optlist, optdict, type_env=None, type_args=())
                 raise CompileError(node.pos, "Type not allowed here.")
         else:
             return (node.compile_time_value(empty_scope), node.pos)
-     
+
     if optlist:
         optlist = [interpret(x, ix) for ix, x in enumerate(optlist)]
     if optdict: