Commit eeeb039f authored by Stefan Behnel's avatar Stefan Behnel

fix two broken imports after last commits

parent 78997d8f
......@@ -1394,10 +1394,12 @@ class CCodeWriter(object):
self.level += 1
def putln_tempita(self, code, **context):
self.putln(tempita.sub(code, **context))
from Cython.Tempita import sub
self.putln(sub(code, **context))
def put_tempita(self, code, **context):
self.put(tempita.sub(code, **context))
from Cython.Tempita import sub
self.put(sub(code, **context))
def increase_indent(self):
self.level = self.level + 1
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment