[pypy-svn] r50722 - pypy/dist/pypy/translator/jvm

antocuni at codespeak.net antocuni at codespeak.net
Thu Jan 17 18:51:31 CET 2008


Author: antocuni
Date: Thu Jan 17 18:51:31 2008
New Revision: 50722

Modified:
   pypy/dist/pypy/translator/jvm/generator.py
Log:
don't put unnecessary spaces at the end of the line



Modified: pypy/dist/pypy/translator/jvm/generator.py
==============================================================================
--- pypy/dist/pypy/translator/jvm/generator.py	(original)
+++ pypy/dist/pypy/translator/jvm/generator.py	Thu Jan 17 18:51:31 2008
@@ -1456,7 +1456,7 @@
         strargs = [jasmin_syntax(arg) for arg in args]
         instr_text = '%s %s' % (jvmstr, " ".join(strargs))
         self.curclass.out('    .line %d\n' % self.curclass.line_number)
-        self.curclass.out('    %-60s\n' % (instr_text,))
+        self.curclass.out('    %s\n' % (instr_text,))
         self.curfunc.instr_counter+=1
 
     def try_catch_region(self, jexcclsty, trystartlbl, tryendlbl, catchlbl):


More information about the pypy-svn mailing list