aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Hesse <webmaster@aquanasoft.de>2013-01-06 22:06:23 +0100
committerAlexander Hesse <webmaster@aquanasoft.de>2013-01-06 22:06:23 +0100
commitbacad8758e14ca22c427a05c4fbeed7c85abc9f4 (patch)
tree4114b18c5614a63d1cc333219f3754c67176b845
parentRenamed pypy_interact to pypy.sandbox.pypysandbox. Removed pypydir import fro... (diff)
downloadpypy-bacad8758e14ca22c427a05c4fbeed7c85abc9f4.tar.gz
pypy-bacad8758e14ca22c427a05c4fbeed7c85abc9f4.tar.bz2
pypy-bacad8758e14ca22c427a05c4fbeed7c85abc9f4.zip
I think its better to keep the original name. pypysandbox -> pypy_interact
-rw-r--r--pypy/bin/pypy_interact5
-rw-r--r--pypy/bin/pypysandbox5
-rwxr-xr-xpypy/sandbox/pypy_interact.py (renamed from pypy/sandbox/pypysandbox.py)0
-rw-r--r--pypy/sandbox/test/test_pypy_interact.py (renamed from pypy/sandbox/test/test_pypysandbox.py)2
4 files changed, 6 insertions, 6 deletions
diff --git a/pypy/bin/pypy_interact b/pypy/bin/pypy_interact
new file mode 100644
index 0000000000..642f2f5122
--- /dev/null
+++ b/pypy/bin/pypy_interact
@@ -0,0 +1,5 @@
+#!/usr/bin/env pypy
+
+from pypy.sandbox import pypy_interact
+
+pypy_interact.main() \ No newline at end of file
diff --git a/pypy/bin/pypysandbox b/pypy/bin/pypysandbox
deleted file mode 100644
index f236f296ef..0000000000
--- a/pypy/bin/pypysandbox
+++ /dev/null
@@ -1,5 +0,0 @@
-#!/usr/bin/env pypy
-
-from pypy.sandbox import pypysandbox
-
-pypysandbox.main() \ No newline at end of file
diff --git a/pypy/sandbox/pypysandbox.py b/pypy/sandbox/pypy_interact.py
index b9bd4605e3..b9bd4605e3 100755
--- a/pypy/sandbox/pypysandbox.py
+++ b/pypy/sandbox/pypy_interact.py
diff --git a/pypy/sandbox/test/test_pypysandbox.py b/pypy/sandbox/test/test_pypy_interact.py
index 771655d614..f56dca5f11 100644
--- a/pypy/sandbox/test/test_pypysandbox.py
+++ b/pypy/sandbox/test/test_pypy_interact.py
@@ -1,5 +1,5 @@
import os, sys, stat, errno
-from pypy.sandbox.pypysandbox import PyPySandboxedProc
+from pypy.sandbox.pypy_interact import PyPySandboxedProc
from rpython.translator.interactive import Translation
from pypy.module.sys.version import CPYTHON_VERSION