[pypy-svn] r27089 - pypy/dist/pypy/rpython
ac at codespeak.net
ac at codespeak.net
Thu May 11 19:01:02 CEST 2006
Author: ac
Date: Thu May 11 19:01:01 2006
New Revision: 27089
Modified:
pypy/dist/pypy/rpython/llinterp.py
Log:
Fix typo.
Modified: pypy/dist/pypy/rpython/llinterp.py
==============================================================================
--- pypy/dist/pypy/rpython/llinterp.py (original)
+++ pypy/dist/pypy/rpython/llinterp.py Thu May 11 19:01:01 2006
@@ -47,12 +47,12 @@
# prepare_graphs_and_create_gc might already use the llinterpreter!
self.gc = None
self.tracer = None
+ self.frame_class = LLFrame
if hasattr(heap, "prepare_graphs_and_create_gc"):
flowgraphs = typer.annotator.translator.graphs
self.gc = heap.prepare_graphs_and_create_gc(self, flowgraphs)
if self.TRACING:
self.tracer = Tracer()
- self.frame_class = LLFrame
def eval_graph(self, graph, args=()):
llframe = self.frame_class(graph, args, self)
More information about the Pypy-commit
mailing list