Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Don't look inside this function
- Loading branch information
Showing
with
2 additions
and
1 deletion.
-
+2
−1
topaz/modules/objectspace.py
|
|
@@ -1,6 +1,6 @@ |
|
|
from __future__ import absolute_import |
|
|
|
|
|
from rpython.rlib import rgc |
|
|
from rpython.rlib import rgc, jit |
|
|
|
|
|
from topaz.module import Module, ModuleDef |
|
|
from topaz.objects.objectobject import W_BaseObject |
|
@@ -42,5 +42,6 @@ def method_each_object(self, space, w_mod, block): |
|
|
return space.newint(len(match_w)) |
|
|
|
|
|
@moduledef.function("garbage_collect") |
|
|
@jit.dont_look_inside |
|
|
def method_garbage_collect(self): |
|
|
rgc.collect() |