[pypy-commit] pypy default: Fix two small typos.

alex_gaynor noreply at buildbot.pypy.org
Mon Dec 3 16:19:33 CET 2012


Author: Alex Gaynor <alex.gaynor at 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


More information about the pypy-commit mailing list