# Do not replace exceptions with user-friendly error messages
debug_no_exception_intercept = 0
+
+# Print a message each time a new stage in the pipeline is entered
+debug_verbose_pipeline = 0
from Cython import Utils
from Cython.Utils import open_new_file, replace_suffix
import CythonScope
+import DebugFlags
module_name_pattern = re.compile(r"[A-Za-z_][A-Za-z0-9_]*(\.[A-Za-z_][A-Za-z0-9_]*)*$")
try:
for phase in pipeline:
if phase is not None:
+ if DebugFlags.debug_verbose_pipeline:
+ print "Entering pipeline phase %r" % phase
data = phase(data)
except CompileError, err:
# err is set