Author: Alexander Hesse <[email protected]> Branch: split-rpython Changeset: r59796:3eacb0c147c1 Date: 2013-01-05 22:59 +0100 http://bitbucket.org/pypy/pypy/changeset/3eacb0c147c1/
Log: pypy.tool.staticmethods -> rpython.tool.staticmethods diff --git a/rpython/rlib/_stacklet_n_a.py b/rpython/rlib/_stacklet_n_a.py --- a/rpython/rlib/_stacklet_n_a.py +++ b/rpython/rlib/_stacklet_n_a.py @@ -1,7 +1,7 @@ from rpython.rlib import _rffi_stacklet as _c from rpython.rlib import objectmodel, debug from rpython.rtyper.annlowlevel import llhelper -from pypy.tool.staticmethods import StaticMethods +from rpython.tool.staticmethods import StaticMethods class StackletGcRootFinder: diff --git a/rpython/rlib/_stacklet_shadowstack.py b/rpython/rlib/_stacklet_shadowstack.py --- a/rpython/rlib/_stacklet_shadowstack.py +++ b/rpython/rlib/_stacklet_shadowstack.py @@ -3,7 +3,7 @@ from rpython.rtyper.annlowlevel import llhelper from rpython.rtyper.lltypesystem import lltype, llmemory from rpython.rtyper.lltypesystem.lloperation import llop -from pypy.tool.staticmethods import StaticMethods +from rpython.tool.staticmethods import StaticMethods NULL_SUSPSTACK = lltype.nullptr(llmemory.GCREF.TO) diff --git a/rpython/rtyper/module/ll_os_path.py b/rpython/rtyper/module/ll_os_path.py --- a/rpython/rtyper/module/ll_os_path.py +++ b/rpython/rtyper/module/ll_os_path.py @@ -6,7 +6,7 @@ import stat import os -from pypy.tool.staticmethods import ClassMethods +from rpython.tool.staticmethods import ClassMethods # Does a path exist? # This is false for dangling symbolic links. diff --git a/rpython/rtyper/rstr.py b/rpython/rtyper/rstr.py --- a/rpython/rtyper/rstr.py +++ b/rpython/rtyper/rstr.py @@ -1,4 +1,4 @@ -from pypy.tool.staticmethods import StaticMethods +from rpython.tool.staticmethods import StaticMethods from rpython.tool.pairtype import pairtype, pair from rpython.tool.sourcetools import func_with_new_name from rpython.annotator import model as annmodel diff --git a/pypy/tool/staticmethods.py b/rpython/tool/staticmethods.py rename from pypy/tool/staticmethods.py rename to rpython/tool/staticmethods.py _______________________________________________ pypy-commit mailing list [email protected] http://mail.python.org/mailman/listinfo/pypy-commit
