summaryrefslogtreecommitdiff
path: root/lang/pypy3-devel/files/patch-pypy__sandbox__pypy_interactive.py
diff options
context:
space:
mode:
authorDavid Naylor <dbn@FreeBSD.org>2014-12-07 18:58:05 +0000
committerDavid Naylor <dbn@FreeBSD.org>2014-12-07 18:58:05 +0000
commit55bee34488ae51d0c34ff5656745c118ef2bf9c5 (patch)
treec516b6e849a7411b6a3dddb18e0a1d27a1b21c9e /lang/pypy3-devel/files/patch-pypy__sandbox__pypy_interactive.py
parent- Remove vestiges of cvs annotate support (diff)
Update lang/pypy3-devel to 2.4.0.
Changes: * Carry across _sqlite.py fix from lang/pypy * Strip cffi shared libraries (from lang/pypy) Change Log: - Various fsencode PEP 383 related fixes to the posix module (readlink, uname, ttyname and ctermid) and improved locale handling - Fixed a couple different crashes related to parsing Python 3 source code - internal refactoring in string and GIL handling which led to significant speedups - improved handling of multiple objects (like sockets) in long-running programs. They are collected and released more efficiently, reducing memory use. In simpler terms - we closed what looked like a memory leak
Diffstat (limited to 'lang/pypy3-devel/files/patch-pypy__sandbox__pypy_interactive.py')
-rw-r--r--lang/pypy3-devel/files/patch-pypy__sandbox__pypy_interactive.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lang/pypy3-devel/files/patch-pypy__sandbox__pypy_interactive.py b/lang/pypy3-devel/files/patch-pypy__sandbox__pypy_interactive.py
index 8d0f8c347557..5f26e42deec2 100644
--- a/lang/pypy3-devel/files/patch-pypy__sandbox__pypy_interactive.py
+++ b/lang/pypy3-devel/files/patch-pypy__sandbox__pypy_interactive.py
@@ -3,7 +3,7 @@
@@ -22,11 +22,14 @@
import sys, os
- sys.path.insert(0, os.path.realpath(os.path.join(os.path.dirname(__file__), '..', '..', '..')))
+ sys.path.insert(0, os.path.realpath(os.path.join(os.path.dirname(__file__), '..', '..')))
+from pypy.module.sys.version import PYPY_VERSION
from rpython.translator.sandbox.sandlib import SimpleIOSandboxedProc
from rpython.translator.sandbox.sandlib import VirtualizedSandboxedProc