Author: Alex Gaynor <alex.gay...@gmail.com>
Branch: 
Changeset: r59291:041189dbc82d
Date: 2012-12-03 07:19 -0800
http://bitbucket.org/pypy/pypy/changeset/041189dbc82d/

Log:    Fix two small typos.

diff --git a/pypy/translator/driver.py b/pypy/translator/driver.py
--- a/pypy/translator/driver.py
+++ b/pypy/translator/driver.py
@@ -516,7 +516,7 @@
         self.log.info('usession directory: %s' % (udir,))
         self.log.info("created: %s" % (self.c_entryp,))
 
-    taskdef(['source_c'], "Compiling c source")
+    @taskdef(['source_c'], "Compiling c source")
     def task_compile_c(self):
         """ Compile the generated C code using either makefile or
         translator/platform
@@ -566,7 +566,7 @@
         filename = self.gen.generate_source()
         self.log.info("Wrote %s" % (filename,))
 
-    taskdef(['source_cli'], 'Compiling CLI source')
+    @taskdef(['source_cli'], 'Compiling CLI source')
     def task_compile_cli(self):
         from pypy.translator.oosupport.support import unpatch_os
         from pypy.translator.cli.test.runtest import CliFunctionWrapper
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to