[pypy-svn] pypy out-of-line-guards: slightly newstylize

fijal commits-noreply at bitbucket.org
Thu Dec 23 09:55:37 CET 2010


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: out-of-line-guards
Changeset: r40196:547f500091c6
Date: 2010-12-23 10:50 +0200
http://bitbucket.org/pypy/pypy/changeset/547f500091c6/

Log:	slightly newstylize

diff --git a/pypy/jit/metainterp/test/test_executor.py b/pypy/jit/metainterp/test/test_executor.py
--- a/pypy/jit/metainterp/test/test_executor.py
+++ b/pypy/jit/metainterp/test/test_executor.py
@@ -32,12 +32,12 @@
     def is_array_of_floats(self):
         return True
 
-class FakeResultR:
+class FakeResultR(object):
     _TYPE = llmemory.GCREF
     def __init__(self, *args):
         self.fakeargs = args
 
-class FakeMetaInterp:
+class FakeMetaInterp(object):
     pass
 
 class FakeCPU(AbstractCPU):


More information about the Pypy-commit mailing list