From tracker at bugs.pypy.org Thu Apr 3 18:31:08 2014 From: tracker at bugs.pypy.org (Brian Kearns) Date: Thu, 03 Apr 2014 16:31:08 +0000 Subject: [pypy-issue] [issue1725] numpy randint interval In-Reply-To: <1396281501.7.0.56634307888.issue1725@bugs.pypy.org> Message-ID: <1396542668.87.0.249596962746.issue1725@bugs.pypy.org> Brian Kearns added the comment: fixed in cd578cc ---------- nosy: +bdk status: unread -> resolved ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Fri Apr 4 00:59:24 2014 From: tracker at bugs.pypy.org (Philip Jenvey) Date: Thu, 03 Apr 2014 22:59:24 +0000 Subject: [pypy-issue] [issue1541] py3k: Re-enable rpython int sized app-level int In-Reply-To: <1374013849.16.0.768623384444.issue1541@bugs.pypy.org> Message-ID: <1396565964.16.0.754363517176.issue1541@bugs.pypy.org> Philip Jenvey added the comment: An IRC user yay_ reported the follow still seeming slow: for i in range(10**8): j = 2*i ---------- status: resolved -> chatting ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Fri Apr 4 16:49:20 2014 From: tracker at bugs.pypy.org (Claudio) Date: Fri, 04 Apr 2014 14:49:20 +0000 Subject: [pypy-issue] [issue867] urllib2 on pypy can leak fd's In-Reply-To: <1315669439.97.0.201746613632.issue867@bugs.pypy.org> Message-ID: <1396622960.89.0.221261008518.issue867@bugs.pypy.org> Claudio added the comment: Just thought I'd mention, there's a fix for (at least some of) this from upstream: http://bugs.python.org/issue18144 http://hg.python.org/cpython/rev/92656b5df2f2 ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Fri Apr 4 22:12:18 2014 From: tracker at bugs.pypy.org (Philip Jenvey) Date: Fri, 04 Apr 2014 20:12:18 +0000 Subject: [pypy-issue] [issue1541] py3k: Re-enable rpython int sized app-level int In-Reply-To: <1374013849.16.0.768623384444.issue1541@bugs.pypy.org> Message-ID: <1396642338.26.0.751234649492.issue1541@bugs.pypy.org> Philip Jenvey added the comment: Seems there's probably a couple things hurting us on this basic example: o Broken strategies (#1471). In particular dict strats, like the lack of CellDict affects this. One or two other specialized dicts are also broken and can affect other situations. I've already began working on this o Py3k's range may be hurting us too because it somewhat differs from py2's xrange in that it handles the equiv. of py2 longs. We'll have to double check this ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Mon Apr 7 00:55:40 2014 From: tracker at bugs.pypy.org (wenzhu man) Date: Sun, 06 Apr 2014 22:55:40 +0000 Subject: [pypy-issue] [issue1713] dict of ast node misbehaving In-Reply-To: <1395279771.98.0.61496930017.issue1713@bugs.pypy.org> Message-ID: <1396824940.86.0.0248183930682.issue1713@bugs.pypy.org> wenzhu man added the comment: resolved by commit e504b1f ---------- status: chatting -> resolved ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Mon Apr 7 00:56:23 2014 From: tracker at bugs.pypy.org (wenzhu man) Date: Sun, 06 Apr 2014 22:56:23 +0000 Subject: [pypy-issue] [issue1673] Can't copy AST-nodes that have missing fields In-Reply-To: <1389623405.63.0.0669653596687.issue1673@bugs.pypy.org> Message-ID: <1396824983.16.0.696035620516.issue1673@bugs.pypy.org> wenzhu man added the comment: resolved by commit e504b1f ---------- nosy: +wman status: unread -> resolved ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Mon Apr 7 03:12:35 2014 From: tracker at bugs.pypy.org (Bogdan Opanchuk) Date: Mon, 07 Apr 2014 01:12:35 +0000 Subject: [pypy-issue] [issue1728] compile() mutates its argument In-Reply-To: <1396833155.12.0.875081248067.issue1728@bugs.pypy.org> Message-ID: <1396833155.12.0.875081248067.issue1728@bugs.pypy.org> New submission from Bogdan Opanchuk : Tested in PyPy 2.2.1 The following code: import ast tree = ast.parse("a = None") print(ast.dump(tree)) compile(tree, '', 'exec') print(ast.dump(tree)) produced the following output: Module(body=[Assign(targets=[Name(id='a', ctx=Store())], value=Name(id='None', ctx=Load()))]) Module(body=[Assign(targets=[Name(id='a', ctx=Store())], value=Const(value=None))]) Apparently, compile() mutated the `tree` argument (adding the `Const` node which is, incidentally, not even present in http://docs.python.org/2/library/ast.html#abstract-grammar). The same code in CPython 2.7.6 or 3.4.0 does not change `tree`. The documentation for `compile()` does not indicate that the `tree` argument may be changed. ---------- messages: 6682 nosy: bogdan, pypy-issue priority: bug release: 2.2 status: unread title: compile() mutates its argument ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Mon Apr 7 03:46:07 2014 From: tracker at bugs.pypy.org (Bogdan Opanchuk) Date: Mon, 07 Apr 2014 01:46:07 +0000 Subject: [pypy-issue] [issue1729] An AST with no line number attributes is not copyable In-Reply-To: <1396835167.29.0.0987509983335.issue1729@bugs.pypy.org> Message-ID: <1396835167.29.0.0987509983335.issue1729@bugs.pypy.org> New submission from Bogdan Opanchuk : Tested on PyPy-2.2.1 Code: import copy import ast func = ast.FunctionDef( name='__wrapper', args=ast.arguments(args=[], vararg=None, kwarg=None, defaults=[]), decorator_list=[], body=[ast.Pass()]) func2 = copy.deepcopy(func) The last line raises the following exception: Traceback (most recent call last): File "app_main.py", line 72, in run_toplevel File "t2.py", line 10, in func2 = copy.deepcopy(func) File "/Users/bogdan/.pyenv/versions/pypy-2.2.1/lib-python/2.7/copy.py", line 182, in deepcopy rv = reductor(2) AttributeError: 'FunctionDef' object has no attribute 'lineno' No exception is raised in CPython 2.7.6 and 3.4.0. ---------- messages: 6683 nosy: bogdan, pypy-issue priority: bug release: 2.2 status: unread title: An AST with no line number attributes is not copyable ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Tue Apr 8 08:10:14 2014 From: tracker at bugs.pypy.org (wenzhu man) Date: Tue, 08 Apr 2014 06:10:14 +0000 Subject: [pypy-issue] [issue1729] An AST with no line number attributes is not copyable In-Reply-To: <1396835167.29.0.0987509983335.issue1729@bugs.pypy.org> Message-ID: <1396937414.13.0.274060255106.issue1729@bugs.pypy.org> wenzhu man added the comment: this issue is recently resolved by commit e504b1f, please check the latest version from the default branch. ---------- nosy: +wman status: unread -> chatting ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Tue Apr 8 08:23:27 2014 From: tracker at bugs.pypy.org (wenzhu man) Date: Tue, 08 Apr 2014 06:23:27 +0000 Subject: [pypy-issue] [issue1728] compile() mutates its argument In-Reply-To: <1396833155.12.0.875081248067.issue1728@bugs.pypy.org> Message-ID: <1396938207.58.0.251262680296.issue1728@bugs.pypy.org> wenzhu man added the comment: I think it's a normal behaviour for pypy optimization strategy ---------- nosy: +wman status: unread -> chatting ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Tue Apr 8 08:32:57 2014 From: tracker at bugs.pypy.org (Bogdan Opanchuk) Date: Tue, 08 Apr 2014 06:32:57 +0000 Subject: [pypy-issue] [issue1728] compile() mutates its argument In-Reply-To: <1396833155.12.0.875081248067.issue1728@bugs.pypy.org> Message-ID: <1396938777.82.0.687484206725.issue1728@bugs.pypy.org> Bogdan Opanchuk added the comment: I agree that the compiler may change the tree internally however it sees fit, but can't it make a copy of the nodes it changes? This mutation is completely unexpected and may lead to subtle bugs. ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Tue Apr 8 09:31:36 2014 From: tracker at bugs.pypy.org (Armin Rigo) Date: Tue, 08 Apr 2014 07:31:36 +0000 Subject: [pypy-issue] [issue1728] compile() mutates its argument In-Reply-To: <1396833155.12.0.875081248067.issue1728@bugs.pypy.org> Message-ID: <1396942296.01.0.259969534111.issue1728@bugs.pypy.org> Armin Rigo added the comment: Yes, this is definitely a bug. ---------- nosy: +arigo ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Fri Apr 11 05:23:50 2014 From: tracker at bugs.pypy.org (VYSE) Date: Fri, 11 Apr 2014 03:23:50 +0000 Subject: [pypy-issue] [issue878] too many open files In-Reply-To: <1316725510.98.0.71219979546.issue878@bugs.pypy.org> Message-ID: <1397186630.92.0.52417043869.issue878@bugs.pypy.org> VYSE added the comment: I reproduce this by looping using httplib to request a file from local server. Python standard library socket close func is not closing the native socket, but assigning a dummy socket waiting for gc. I guess increasing socket request in a short while and maybe my memory is too large(128G) while minimark has to wait for a longer while. Can gc detect the fd open count and try to collect if count reach the system limit? ---------- nosy: +VYSE release: -> 2.2 ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Fri Apr 11 10:55:56 2014 From: tracker at bugs.pypy.org (Armin Rigo) Date: Fri, 11 Apr 2014 08:55:56 +0000 Subject: [pypy-issue] [issue878] too many open files In-Reply-To: <1316725510.98.0.71219979546.issue878@bugs.pypy.org> Message-ID: <1397206556.59.0.20642924898.issue878@bugs.pypy.org> Armin Rigo added the comment: VYSE: yes, that's possible, but that might be a very bad idea in some cases. It means that if your program leaks FDs heavily, then it would work, but force a complete GC cycle every n'th leaked FDs. The value of n is a constant, but the program can take an arbitrary amount of memory, which makes a complete GC cycle arbitrarily long. The end result is that PyPy would spend an arbitrarily large fraction of its run time in the GC --- slowing down the actual execution, not by 10% nor 100% nor 1000% but by essentially any factor. I think it's a better idea to go to the individual projects and tell them that they need to close their open files in order to run on any non-CPython implementation of Python. ---------- nosy: +arigo ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Fri Apr 11 14:28:48 2014 From: tracker at bugs.pypy.org (lesshaste) Date: Fri, 11 Apr 2014 12:28:48 +0000 Subject: [pypy-issue] [issue1730] numpy: bug. Wrong output in dot test In-Reply-To: <1397219328.22.0.899492571279.issue1730@bugs.pypy.org> Message-ID: <1397219328.22.0.899492571279.issue1730@bugs.pypy.org> New submission from lesshaste : np.random.seed(22) f = np.random.random_sample((1024, 16)) v = np.random.random_sample((16, 32)) r = np.empty((1024, 32)) for i in range(12): np.dot(f, v, r) r2 = np.dot(f, v, out=None) r and r2 should now be equal but they are not. ---------- messages: 6690 nosy: lesshaste, pypy-issue priority: bug status: unread title: numpy: bug. Wrong output in dot test ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Fri Apr 11 18:51:34 2014 From: tracker at bugs.pypy.org (Brian Kearns) Date: Fri, 11 Apr 2014 16:51:34 +0000 Subject: [pypy-issue] [issue1730] numpy: bug. Wrong output in dot test In-Reply-To: <1397219328.22.0.899492571279.issue1730@bugs.pypy.org> Message-ID: <1397235094.81.0.782703292564.issue1730@bugs.pypy.org> Brian Kearns added the comment: this works fine on nightly, think it was fixed months ago. ---------- nosy: +bdk status: unread -> resolved ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Fri Apr 11 21:58:26 2014 From: tracker at bugs.pypy.org (lesshaste) Date: Fri, 11 Apr 2014 19:58:26 +0000 Subject: [pypy-issue] [issue1730] numpy: bug. Wrong output in dot test In-Reply-To: <1397219328.22.0.899492571279.issue1730@bugs.pypy.org> Message-ID: <1397246306.98.0.669690150814.issue1730@bugs.pypy.org> lesshaste added the comment: pypy-2.2.1-linux_x86_64-portable/bin/my-pypy/bin$ ./pypy Python 2.7.3 (87aa9de10f9ca71da9ab4a3d53e0ba176b67d086, Apr 09 2014, 14:10:47) [PyPy 2.2.1 with GCC 4.8.2] on linux2 [...] r array([[ 41.87228011, 41.88910105, 49.68946342, ..., 53.14196743, 57.03029384, 63.70106051], [ 37.49951904, 44.22557292, 58.7592183 , ..., 60.37941741, 59.58299275, 72.88505918], [ 37.17072874, 28.76871637, 45.00236561, ..., 42.52852177, 57.66368332, 56.98959712], ..., [ 32.8739071 , 43.07599449, 53.3063834 , ..., 43.67186637, 52.38684193, 62.24297903], [ 34.61514793, 28.94486807, 31.98606018, ..., 39.00401578, 43.18583966, 45.71964629], [ 26.43124811, 30.99685596, 32.89396464, ..., 29.74863561, 32.73329414, 43.95274737]]) >>>> r2 array([[ 3.48935668, 3.49075842, 4.14078862, ..., 4.42849729, 4.75252449, 5.30842171], [ 3.12495992, 3.68546441, 4.89660153, ..., 5.03161812, 4.9652494 , 6.07375493], [ 3.09756073, 2.39739303, 3.75019713, ..., 3.54404348, 4.80530694, 4.74913309], ..., [ 2.73949226, 3.58966621, 4.44219862, ..., 3.6393222 , 4.36557016, 5.18691492], [ 2.88459566, 2.41207234, 2.66550501, ..., 3.25033465, 3.59881997, 3.80997052], [ 2.20260401, 2.58307133, 2.74116372, ..., 2.47905297, 2.72777451, 3.66272895]]) ---------- status: resolved -> chatting ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Fri Apr 11 22:16:34 2014 From: tracker at bugs.pypy.org (Brian Kearns) Date: Fri, 11 Apr 2014 20:16:34 +0000 Subject: [pypy-issue] [issue1730] numpy: bug. Wrong output in dot test In-Reply-To: <1397219328.22.0.899492571279.issue1730@bugs.pypy.org> Message-ID: <1397247394.05.0.368154381802.issue1730@bugs.pypy.org> Brian Kearns added the comment: you are using 2.2.1, not nightly. as i said, fixed in nightly, months ago. ---------- status: chatting -> resolved ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Fri Apr 11 22:38:39 2014 From: tracker at bugs.pypy.org (lesshaste) Date: Fri, 11 Apr 2014 20:38:39 +0000 Subject: [pypy-issue] [issue1730] numpy: bug. Wrong output in dot test In-Reply-To: <1397219328.22.0.899492571279.issue1730@bugs.pypy.org> Message-ID: <1397248719.03.0.791363255809.issue1730@bugs.pypy.org> lesshaste added the comment: Oh that is my mistake. I didn't understand the numbering system. Thanks. ---------- status: resolved -> chatting ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Fri Apr 11 22:56:21 2014 From: tracker at bugs.pypy.org (lesshaste) Date: Fri, 11 Apr 2014 20:56:21 +0000 Subject: [pypy-issue] [issue1731] numpy: test hangs on test_large_fancy_indexing (numpy.lib.tests.test_regression.TestRegression) ... In-Reply-To: <1397249781.07.0.210856494267.issue1731@bugs.pypy.org> Message-ID: <1397249781.07.0.210856494267.issue1731@bugs.pypy.org> New submission from lesshaste : If you run np.test(verbose=2), it hangs on test_large_fancy_indexing (numpy.lib.tests.test_regression.TestRegression) ... ---------- messages: 6695 nosy: lesshaste, pypy-issue priority: bug status: unread title: numpy: test hangs on test_large_fancy_indexing (numpy.lib.tests.test_regression.TestRegression) ... ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Fri Apr 11 22:57:48 2014 From: tracker at bugs.pypy.org (lesshaste) Date: Fri, 11 Apr 2014 20:57:48 +0000 Subject: [pypy-issue] [issue1731] numpy: test hangs on test_large_fancy_indexing (numpy.lib.tests.test_regression.TestRegression) ... In-Reply-To: <1397249781.07.0.210856494267.issue1731@bugs.pypy.org> Message-ID: <1397249868.3.0.825258452509.issue1731@bugs.pypy.org> lesshaste added the comment: This was using pypy-2.3-alpha-20140405-linux_x86_64-portable ---------- status: unread -> chatting ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Fri Apr 11 23:52:16 2014 From: tracker at bugs.pypy.org (Brian Kearns) Date: Fri, 11 Apr 2014 21:52:16 +0000 Subject: [pypy-issue] [issue1731] numpy: test hangs on test_large_fancy_indexing (numpy.lib.tests.test_regression.TestRegression) ... In-Reply-To: <1397249781.07.0.210856494267.issue1731@bugs.pypy.org> Message-ID: <1397253136.27.0.38043310713.issue1731@bugs.pypy.org> Brian Kearns added the comment: this test used to fail early, i fixed something with indexing and now it runs enough to hang. changed to fail early in numpy repo until issue is fixed. ---------- nosy: +bdk ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Sat Apr 12 04:27:28 2014 From: tracker at bugs.pypy.org (Xiaochang) Date: Sat, 12 Apr 2014 02:27:28 +0000 Subject: [pypy-issue] [issue1732] Crash in JIT problem In-Reply-To: <1397269648.58.0.31773100291.issue1732@bugs.pypy.org> Message-ID: <1397269648.58.0.31773100291.issue1732@bugs.pypy.org> New submission from Xiaochang : I use 64-bit Fedora, and I have downloaded the 2.2.1 version of pypy. I also tried compiling the source code, but all of them have the same "Crash in JIT" error Below is the error trace info: RPython traceback: File "pypy_module_pypyjit_interp_jit.c", line 105, in jump_absolute__AccessDirect_None File "rpython_jit_metainterp_warmstate.c", line 2616, in maybe_compile_and_run__star_5_1 File "rpython_jit_metainterp_warmstate.c", line 8431, in bound_reached__star_5_1 File "rpython_jit_metainterp_pyjitpl.c", line 5173, in compile_and_run_once___rpython_jit_metainterp_ji_4 File "rpython_jit_metainterp_pyjitpl.c", line 4310, in MetaInterp__compile_and_run_once File "rpython_jit_metainterp_pyjitpl.c", line 7155, in MetaInterp_interpret File "rpython_jit_metainterp_pyjitpl.c", line 12900, in MetaInterp__interpret File "rpython_jit_metainterp_pyjitpl.c", line 20317, in MIFrame_run_one_step File "rpython_jit_metainterp_pyjitpl.c", line 46127, in handler_residual_call_ir_v File "rpython_jit_metainterp_pyjitpl_2.c", line 54319, in execute_varargs___126 File "rpython_jit_metainterp_pyjitpl_2.c", line 21191, in MetaInterp__record_helper_nonpure_varargs File "rpython_jit_metainterp_heapcache.c", line 11222, in HeapCache_clear_caches File "rpython_rtyper_lltypesystem_rdict_1.c", line 37709, in ll_dict_getitem__dicttablePtr_Signed_10 ~~~ Crash in JIT! ---------- messages: 6698 nosy: pypy-issue, xpeng priority: critical release: 2.2 status: unread title: Crash in JIT problem ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Sat Apr 12 09:05:39 2014 From: tracker at bugs.pypy.org (Armin Rigo) Date: Sat, 12 Apr 2014 07:05:39 +0000 Subject: [pypy-issue] [issue1732] Crash in JIT problem In-Reply-To: <1397269648.58.0.31773100291.issue1732@bugs.pypy.org> Message-ID: <1397286339.59.0.50909453912.issue1732@bugs.pypy.org> Armin Rigo added the comment: Hi xpeng! Thank you for reporting this, but you need to attach an example Python file that causes the error. We can't do anything without it. ---------- nosy: +arigo status: unread -> chatting ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Sat Apr 12 09:09:55 2014 From: tracker at bugs.pypy.org (Armin Rigo) Date: Sat, 12 Apr 2014 07:09:55 +0000 Subject: [pypy-issue] [issue1732] Crash in JIT problem In-Reply-To: <1397269648.58.0.31773100291.issue1732@bugs.pypy.org> Message-ID: <1397286595.49.0.602933857796.issue1732@bugs.pypy.org> Armin Rigo added the comment: Note also that the same issue was fixed in 5ca199444bb9 two months ago. When you say "compiling from the source code", do you mean you compiled exactly the 2.2.1 version again, or the current trunk? If it was 2.2.1 again, then the problem is already reported and fixed in issue1669. ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Sat Apr 12 10:33:03 2014 From: tracker at bugs.pypy.org (lesshaste) Date: Sat, 12 Apr 2014 08:33:03 +0000 Subject: [pypy-issue] [issue1733] numpy: bug. test_2d_w_missing gives incorrect results In-Reply-To: <1397291583.65.0.657248103234.issue1733@bugs.pypy.org> Message-ID: <1397291583.65.0.657248103234.issue1733@bugs.pypy.org> New submission from lesshaste : If you run np.test('test_2d_w_missing') You get "Arrays are not almost equal" failures. For example ====================================================================== FAIL: Test cov 1 1D variable w/missing values ---------------------------------------------------------------------- Traceback (most recent call last): File "/home/foo/Downloads/pypy-2.3-alpha-20140405-linux_x86_64-portable/bin/my-env/site-packages/numpy/ma/tests/test_extras.py", line 574, in test_1d_w_missing assert_almost_equal(np.cov(nx, nx[::-1]), cov(x, x[::-1])) File "/home/foo/Downloads/pypy-2.3-alpha-20140405-linux_x86_64-portable/bin/my-env/site-packages/numpy/ma/testutils.py", line 158, in assert_almost_equal err_msg=err_msg, verbose=verbose) File "/home/foo/Downloads/pypy-2.3-alpha-20140405-linux_x86_64-portable/bin/my-env/site-packages/numpy/ma/testutils.py", line 224, in assert_array_almost_equal header='Arrays are not almost equal') File "/home/foo/Downloads/pypy-2.3-alpha-20140405-linux_x86_64-portable/bin/my-env/site-packages/numpy/ma/testutils.py", line 189, in assert_array_compare verbose=verbose, header=header) File "/home/foo/Downloads/pypy-2.3-alpha-20140405-linux_x86_64-portable/bin/my-env/site-packages/numpy/testing/utils.py", line 644, in assert_array_compare raise AssertionError(msg) AssertionError: Arrays are not almost equal (mismatch 100.0%) x: array([[ 0.02492787, -0.00234864], [-0.00234864, 0.01556521]]) y: array([[ 0.02464231, -0.00498551], [-0.01461801, -0.00223288]]) ====================================================================== FAIL: Test cov on 2D variable w/ missing value ---------------------------------------------------------------------- Traceback (most recent call last): File "/home/foo/Downloads/pypy-2.3-alpha-20140405-linux_x86_64-portable/bin/my-env/site-packages/numpy/ma/tests/test_extras.py", line 589, in test_2d_w_missing np.cov(xf) * (x.shape[1] - 1) / (frac - 1.)) File "/home/foo/Downloads/pypy-2.3-alpha-20140405-linux_x86_64-portable/bin/my-env/site-packages/numpy/ma/testutils.py", line 158, in assert_almost_equal err_msg=err_msg, verbose=verbose) File "/home/foo/Downloads/pypy-2.3-alpha-20140405-linux_x86_64-portable/bin/my-env/site-packages/numpy/ma/testutils.py", line 224, in assert_array_almost_equal header='Arrays are not almost equal') File "/home/foo/Downloads/pypy-2.3-alpha-20140405-linux_x86_64-portable/bin/my-env/site-packages/numpy/ma/testutils.py", line 189, in assert_array_compare verbose=verbose, header=header) File "/home/raph/Downloads/pypy-2.3-alpha-20140405-linux_x86_64-portable/bin/my-env/site-packages/numpy/testing/utils.py", line 644, in assert_array_compare raise AssertionError(msg) AssertionError: Arrays are not almost equal (mismatch 100.0%) x: array([[ 0.0097693 , 0.00435026, -0.03047703], [ 0.00051701, -0.03022188, 0.07877541], [-0.01996614, 0.0155907 , -0.01221537]]) y: array([[ 0.05489846, -0.0785603 , 0.00251277], [-0.0785603 , 0.12726405, -0.01220223], [ 0.00251277, -0.01220223, 0.00545237]]) ---------- messages: 6701 nosy: lesshaste, pypy-issue priority: bug status: unread title: numpy: bug. test_2d_w_missing gives incorrect results ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Sat Apr 12 10:46:45 2014 From: tracker at bugs.pypy.org (lesshaste) Date: Sat, 12 Apr 2014 08:46:45 +0000 Subject: [pypy-issue] [issue1734] numpy: test_imag_real gives incorrect outputs In-Reply-To: <1397292405.56.0.958438941719.issue1734@bugs.pypy.org> Message-ID: <1397292405.56.0.958438941719.issue1734@bugs.pypy.org> New submission from lesshaste : For example... ====================================================================== FAIL: Tests minimum and maximum. ---------------------------------------------------------------------- Traceback (most recent call last): File "/home/raph/Downloads/pypy-2.3-alpha-20140405-linux_x86_64-portable/bin/my-env/site-packages/numpy/ma/tests/test_core.py", line 854, in test_minmax_func assert_equal(minimum([1, 2, 3], [4, 0, 9]), [1, 0, 3]) File "/home/raph/Downloads/pypy-2.3-alpha-20140405-linux_x86_64-portable/bin/my-env/site-packages/numpy/ma/testutils.py", line 123, in assert_equal return assert_array_equal(actual, desired, err_msg) File "/home/raph/Downloads/pypy-2.3-alpha-20140405-linux_x86_64-portable/bin/my-env/site-packages/numpy/ma/testutils.py", line 196, in assert_array_equal header='Arrays are not equal') File "/home/raph/Downloads/pypy-2.3-alpha-20140405-linux_x86_64-portable/bin/my-env/site-packages/numpy/ma/testutils.py", line 189, in assert_array_compare verbose=verbose, header=header) File "/home/raph/Downloads/pypy-2.3-alpha-20140405-linux_x86_64-portable/bin/my-env/site-packages/numpy/testing/utils.py", line 644, in assert_array_compare raise AssertionError(msg) AssertionError: Arrays are not equal (mismatch 66.6666666667%) x: array([ True, True, True], dtype=bool) y: array([1, 0, 3]) ====================================================================== FAIL: Check that the mask is not back-propagated when using numpy functions ---------------------------------------------------------------------- Traceback (most recent call last): File "/home/raph/Downloads/pypy-2.3-alpha-20140405-linux_x86_64-portable/bin/my-env/site-packages/numpy/ma/tests/test_core.py", line 1196, in test_numpyarithmetics assert_equal(test.mask, control.mask) File "/home/raph/Downloads/pypy-2.3-alpha-20140405-linux_x86_64-portable/bin/my-env/site-packages/numpy/ma/testutils.py", line 123, in assert_equal return assert_array_equal(actual, desired, err_msg) File "/home/raph/Downloads/pypy-2.3-alpha-20140405-linux_x86_64-portable/bin/my-env/site-packages/numpy/ma/testutils.py", line 196, in assert_array_equal header='Arrays are not equal') File "/home/raph/Downloads/pypy-2.3-alpha-20140405-linux_x86_64-portable/bin/my-env/site-packages/numpy/ma/testutils.py", line 189, in assert_array_compare verbose=verbose, header=header) File "/home/raph/Downloads/pypy-2.3-alpha-20140405-linux_x86_64-portable/bin/my-env/site-packages/numpy/testing/utils.py", line 644, in assert_array_compare raise AssertionError(msg) AssertionError: Arrays are not equal (mismatch 40.0%) x: array([False, False, False, False, True], dtype=bool) y: array([ True, True, False, False, True], dtype=bool) ---------- messages: 6702 nosy: lesshaste, pypy-issue priority: bug status: unread title: numpy: test_imag_real gives incorrect outputs ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Sat Apr 12 10:49:05 2014 From: tracker at bugs.pypy.org (lesshaste) Date: Sat, 12 Apr 2014 08:49:05 +0000 Subject: [pypy-issue] [issue1734] numpy: test_imag_real gives incorrect outputs In-Reply-To: <1397292405.56.0.958438941719.issue1734@bugs.pypy.org> Message-ID: <1397292545.27.0.213919594212.issue1734@bugs.pypy.org> lesshaste added the comment: This may be more interesting... ====================================================================== FAIL: Check complex ---------------------------------------------------------------------- Traceback (most recent call last): File "/home/raph/Downloads/pypy-2.3-alpha-20140405-linux_x86_64-portable/bin/my-env/site-packages/numpy/ma/tests/test_core.py", line 1091, in test_imag_real assert_equal(xx.imag, [10, 2]) File "/home/raph/Downloads/pypy-2.3-alpha-20140405-linux_x86_64-portable/bin/my-env/site-packages/numpy/ma/testutils.py", line 123, in assert_equal return assert_array_equal(actual, desired, err_msg) File "/home/raph/Downloads/pypy-2.3-alpha-20140405-linux_x86_64-portable/bin/my-env/site-packages/numpy/ma/testutils.py", line 196, in assert_array_equal header='Arrays are not equal') File "/home/raph/Downloads/pypy-2.3-alpha-20140405-linux_x86_64-portable/bin/my-env/site-packages/numpy/ma/testutils.py", line 189, in assert_array_compare verbose=verbose, header=header) File "/home/raph/Downloads/pypy-2.3-alpha-20140405-linux_x86_64-portable/bin/my-env/site-packages/numpy/testing/utils.py", line 644, in assert_array_compare raise AssertionError(msg) AssertionError: Arrays are not equal (mismatch 50.0%) x: array([ 1., 20.]) y: array([1, 2]) ---------- status: unread -> chatting ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Sat Apr 12 17:11:28 2014 From: tracker at bugs.pypy.org (Xiaochang) Date: Sat, 12 Apr 2014 15:11:28 +0000 Subject: [pypy-issue] [issue1732] Crash in JIT problem In-Reply-To: <1397269648.58.0.31773100291.issue1732@bugs.pypy.org> Message-ID: <1397315488.43.0.295952441243.issue1732@bugs.pypy.org> Xiaochang added the comment: Yes, it was 2.2.1. So the only difference between the 2.2.1 and the current trunk is the include directory, right? I have to re-compile it because I don't have root previleges for the system and there is a missing library for me when using the binary. ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Sun Apr 13 18:32:42 2014 From: tracker at bugs.pypy.org (Armin Rigo) Date: Sun, 13 Apr 2014 16:32:42 +0000 Subject: [pypy-issue] [issue1732] Crash in JIT problem In-Reply-To: <1397269648.58.0.31773100291.issue1732@bugs.pypy.org> Message-ID: <1397406762.28.0.00392214353384.issue1732@bugs.pypy.org> Armin Rigo added the comment: No? Since the 2.2.1 release (4-5 months ago?) we made changes in about every corner. In case recompiling is an issue you can try the portable binaries (there are supposed to be updated weekly): https://github.com/squeaky-pl/portable-pypy ---------- status: chatting -> invalid ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Mon Apr 14 04:27:58 2014 From: tracker at bugs.pypy.org (YAMAMOTO Takashi) Date: Mon, 14 Apr 2014 02:27:58 +0000 Subject: [pypy-issue] [issue1514] module behaviour incompatibility which makes eventlet fail In-Reply-To: <1370934852.01.0.927470601666.issue1514@bugs.pypy.org> Message-ID: <1397442478.52.0.0350504041119.issue1514@bugs.pypy.org> YAMAMOTO Takashi added the comment: ping! ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Mon Apr 14 17:15:36 2014 From: tracker at bugs.pypy.org (mcrusoe) Date: Mon, 14 Apr 2014 15:15:36 +0000 Subject: [pypy-issue] [issue1735] cpython user site-packages (~/.local/..) are incompatible In-Reply-To: <1397488536.15.0.600832956422.issue1735@bugs.pypy.org> Message-ID: <1397488536.15.0.600832956422.issue1735@bugs.pypy.org> New submission from mcrusoe : See https://gist.github.com/mr-c/1296dae04ecffb27fa92 ---------- messages: 6707 nosy: mcrusoe, pypy-issue priority: bug status: unread title: cpython user site-packages (~/.local/..) are incompatible ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Mon Apr 14 17:16:03 2014 From: tracker at bugs.pypy.org (Armin Rigo) Date: Mon, 14 Apr 2014 15:16:03 +0000 Subject: [pypy-issue] [issue1514] module behaviour incompatibility which makes eventlet fail In-Reply-To: <1370934852.01.0.927470601666.issue1514@bugs.pypy.org> Message-ID: <1397488563.21.0.35294235009.issue1514@bugs.pypy.org> Armin Rigo added the comment: If the test "isinstance(w_mod, Module)" fails then we used to add anyway w_mod to sys.modules. With your patch we no longer do. Is that intentional? ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Tue Apr 15 02:48:50 2014 From: tracker at bugs.pypy.org (YAMAMOTO Takashi) Date: Tue, 15 Apr 2014 00:48:50 +0000 Subject: [pypy-issue] [issue1514] module behaviour incompatibility which makes eventlet fail In-Reply-To: <1370934852.01.0.927470601666.issue1514@bugs.pypy.org> Message-ID: <1397522930.23.0.218806275745.issue1514@bugs.pypy.org> YAMAMOTO Takashi added the comment: no, it isn't intentional. i don't know when it can be false. ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Tue Apr 15 12:15:13 2014 From: tracker at bugs.pypy.org (Armin Rigo) Date: Tue, 15 Apr 2014 10:15:13 +0000 Subject: [pypy-issue] [issue1514] module behaviour incompatibility which makes eventlet fail In-Reply-To: <1370934852.01.0.927470601666.issue1514@bugs.pypy.org> Message-ID: <1397556913.42.0.433275148665.issue1514@bugs.pypy.org> Armin Rigo added the comment: A lot of things can subtly go wrong with this patch, because it creates a new module as an instance of the base class "Module", which can lead to all sorts of unexpected issues... For instance, if you do "del sys.modules['sys']; import sys" then you get a sys module that is not really a sys module, e.g. it would never have the attribute 'exc_type'... Unsure how to solve this. ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Tue Apr 15 12:28:55 2014 From: tracker at bugs.pypy.org (YAMAMOTO Takashi) Date: Tue, 15 Apr 2014 10:28:55 +0000 Subject: [pypy-issue] [issue1514] module behaviour incompatibility which makes eventlet fail In-Reply-To: <1370934852.01.0.927470601666.issue1514@bugs.pypy.org> Message-ID: <1397557735.27.0.886098097463.issue1514@bugs.pypy.org> YAMAMOTO Takashi added the comment: i wasn't aware how exc_type is implemented in pypy. it seems incompatible with cpython. shouldn't it be fixed regardless of this issue? ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Tue Apr 15 13:08:59 2014 From: tracker at bugs.pypy.org (Armin Rigo) Date: Tue, 15 Apr 2014 11:08:59 +0000 Subject: [pypy-issue] [issue1514] module behaviour incompatibility which makes eventlet fail In-Reply-To: <1370934852.01.0.927470601666.issue1514@bugs.pypy.org> Message-ID: <1397560139.52.0.0175850020759.issue1514@bugs.pypy.org> Armin Rigo added the comment: Sorry if you don't get much progress on this issue. To reiterate, the problem is that it's delicate. The way the built-in modules are currently implemented in PyPy creates some friction with CPython. In order to really fix it we need more than a small localized change. Now, it's possible that there is a small patch that just fixes the issue for eventlet. Such a change would still be fine if we can't think of other cases that it breaks, but in this case, pypy-import.diff3 does break other things... ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Tue Apr 15 13:52:50 2014 From: tracker at bugs.pypy.org (David Griffin) Date: Tue, 15 Apr 2014 11:52:50 +0000 Subject: [pypy-issue] [issue1736] Multiple Pyglet bugs In-Reply-To: <1397562770.79.0.312926037693.issue1736@bugs.pypy.org> Message-ID: <1397562770.79.0.312926037693.issue1736@bugs.pypy.org> New submission from David Griffin : Conversation on bug 849 may be relevant. Further to recent comments I've made on the blog about testing Pyglet with PyPy, there are at least 3 examples in Pyglet which do not exhibit correct behaviour. Testing was carried out with Ubuntu 14.04/PyPy 2.2+Ubuntu 14.04/latest PyPy nightly binary and Pyglet 1.2-alpha; I believe that these problems have existed for some time (probably as far back as PyPy 2.0 beta), but other issues prevented Pyglet from being usable back then. Problems: astraea example: On pressing a button on the title screen, PyPy segfaults with an invalid memory access noisy example: On a spawned ball bouncing off the window edge (triggers a sound), PyPy segfaults. It rarely produces an incomplete rpython traceback, which I haven't been able to capture. text_input example: There appears to be a random chance whether any of the text boxes will appear to accept input. Normally, they do not appear to accept input, although sometimes 1 or more will. Note: I cannot confirm if the text boxes are not receiving input at all, or are receiving input and not updating appropriately. Also note: a number of pyglets examples will fail to work on cPython due to apparent lack of maintenance. Hence any problems with the media_info, media_player, video and soundspace examples are expected. Also, due to a bug in Pyglet, image_convert will likely only produce PNG files under PyPy, regardless of what is requested. ---------- messages: 6713 nosy: habilain, pypy-issue priority: bug release: 2.2 status: unread title: Multiple Pyglet bugs ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Tue Apr 15 15:33:57 2014 From: tracker at bugs.pypy.org (serge_sans_paille) Date: Tue, 15 Apr 2014 13:33:57 +0000 Subject: [pypy-issue] [issue1737] numpypy running very slow on simple example In-Reply-To: <1397568837.52.0.210564480113.issue1737@bugs.pypy.org> Message-ID: <1397568837.52.0.210564480113.issue1737@bugs.pypy.org> New submission from serge_sans_paille : The attached file runs very slow, something like 10 times the numpy speed. Any reason? ---------- messages: 6714 nosy: pypy-issue, serge_sans_paille priority: performance bug status: unread title: numpypy running very slow on simple example ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Wed Apr 16 07:21:24 2014 From: tracker at bugs.pypy.org (YAMAMOTO Takashi) Date: Wed, 16 Apr 2014 05:21:24 +0000 Subject: [pypy-issue] [issue1514] module behaviour incompatibility which makes eventlet fail In-Reply-To: <1370934852.01.0.927470601666.issue1514@bugs.pypy.org> Message-ID: <1397625684.24.0.862560688512.issue1514@bugs.pypy.org> YAMAMOTO Takashi added the comment: the symptom seems same as cpython. kuma% python Python 2.7.6 (default, Feb 11 2014, 04:39:17) [GCC 4.5.3] on netbsd6 Type "help", "copyright", "credits" or "license" for more information. >>> import sys >>> del sys.modules['sys'] >>> import sys >>> print sys.exc_type Traceback (most recent call last): File "", line 1, in AttributeError: 'module' object has no attribute 'exc_type' >>> ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Wed Apr 16 14:48:31 2014 From: tracker at bugs.pypy.org (Armin Rigo) Date: Wed, 16 Apr 2014 12:48:31 +0000 Subject: [pypy-issue] [issue1514] module behaviour incompatibility which makes eventlet fail In-Reply-To: <1370934852.01.0.927470601666.issue1514@bugs.pypy.org> Message-ID: <1397652511.84.0.668488913768.issue1514@bugs.pypy.org> Armin Rigo added the comment: Ok, I'll just accept this patch if it shows no issue with the test suite from CPython (started test run in the new branch 'issue1514'). Did you check it with eventlet too? ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Thu Apr 17 09:29:30 2014 From: tracker at bugs.pypy.org (Armin Rigo) Date: Thu, 17 Apr 2014 07:29:30 +0000 Subject: [pypy-issue] [issue849] pypy 1.6, pyglet crash on win32 In-Reply-To: <1314533256.76.0.0673329127649.issue849@bugs.pypy.org> Message-ID: <1397719770.47.0.0173014837526.issue849@bugs.pypy.org> Armin Rigo added the comment: I'm closing this as a duplicate of the more recent issue1736. Matpow2's link is dead so the best we can do is assume that the new issue reports similar problems. ---------- status: chatting -> duplicate ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Thu Apr 17 11:59:07 2014 From: tracker at bugs.pypy.org (YAMAMOTO Takashi) Date: Thu, 17 Apr 2014 09:59:07 +0000 Subject: [pypy-issue] [issue1514] module behaviour incompatibility which makes eventlet fail In-Reply-To: <1370934852.01.0.927470601666.issue1514@bugs.pypy.org> Message-ID: <1397728747.72.0.760468347466.issue1514@bugs.pypy.org> YAMAMOTO Takashi added the comment: i tried some of ryu's unit tests, which uses eventlet. git clone https://github.com/osrg/ryu.git cd ryu pypy ./ryu/tests/run_tests.py unit.lib.test_hub 31fa36a1d761 (including the patch) -> hanged up f2bdd3baf2d1 (not including the patch) -> passed ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Thu Apr 17 12:00:24 2014 From: tracker at bugs.pypy.org (YAMAMOTO Takashi) Date: Thu, 17 Apr 2014 10:00:24 +0000 Subject: [pypy-issue] [issue1514] module behaviour incompatibility which makes eventlet fail In-Reply-To: <1370934852.01.0.927470601666.issue1514@bugs.pypy.org> Message-ID: <1397728824.47.0.785246762542.issue1514@bugs.pypy.org> YAMAMOTO Takashi added the comment: > 31fa36a1d761 (including the patch) -> hanged up > f2bdd3baf2d1 (not including the patch) -> passed oops. correctly, 31fa36a1d761 (not including the patch) -> hanged up f2bdd3baf2d1 (including the patch) -> passed ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Thu Apr 17 17:04:40 2014 From: tracker at bugs.pypy.org (Armin Rigo) Date: Thu, 17 Apr 2014 15:04:40 +0000 Subject: [pypy-issue] [issue1514] module behaviour incompatibility which makes eventlet fail In-Reply-To: <1370934852.01.0.927470601666.issue1514@bugs.pypy.org> Message-ID: <1397747080.52.0.290835518111.issue1514@bugs.pypy.org> Armin Rigo added the comment: Ok, marked as resolved (f96656bbecc9). ---------- status: chatting -> resolved ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Fri Apr 18 15:02:38 2014 From: tracker at bugs.pypy.org (mattip) Date: Fri, 18 Apr 2014 13:02:38 +0000 Subject: [pypy-issue] [issue1724] numpy: numpy.random.binomial not implemented In-Reply-To: <1396276217.61.0.245768287371.issue1724@bugs.pypy.org> Message-ID: <1397826158.3.0.638200758213.issue1724@bugs.pypy.org> mattip added the comment: please try again with latest nightly and cffi-random branch of pypy/numpy ---------- nosy: +mattip priority: bug -> feature status: unread -> in-progress ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Fri Apr 18 15:05:30 2014 From: tracker at bugs.pypy.org (mattip) Date: Fri, 18 Apr 2014 13:05:30 +0000 Subject: [pypy-issue] [issue1727] numpy: numpy.random.choice not implemented In-Reply-To: <1396288915.29.0.9511952625.issue1727@bugs.pypy.org> Message-ID: <1397826330.32.0.74139311544.issue1727@bugs.pypy.org> mattip added the comment: please try with a nightly pypy and the cffi-random branch of pypy/numpy ---------- nosy: +mattip priority: bug -> feature status: unread -> in-progress ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Fri Apr 18 16:34:02 2014 From: tracker at bugs.pypy.org (YAMAMOTO Takashi) Date: Fri, 18 Apr 2014 14:34:02 +0000 Subject: [pypy-issue] [issue1738] struct.unpack incompatibility with cpython In-Reply-To: <1397831642.18.0.921181921512.issue1738@bugs.pypy.org> Message-ID: <1397831642.18.0.921181921512.issue1738@bugs.pypy.org> New submission from YAMAMOTO Takashi : kuma% python ss.py (0,) kuma% pypy ss.py (0L,) kuma% ---------- nosy: +yamt status: unread -> chatting ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Sat Apr 19 09:44:56 2014 From: tracker at bugs.pypy.org (Armin Rigo) Date: Sat, 19 Apr 2014 07:44:56 +0000 Subject: [pypy-issue] [issue1739] file append mode In-Reply-To: <1397893496.82.0.118636748648.issue1739@bugs.pypy.org> Message-ID: <1397893496.82.0.118636748648.issue1739@bugs.pypy.org> New submission from Armin Rigo : Writing into two files objects opened in "append" mode but with the same file name works more or less as expected on CPython 2 and CPython 3, but outputs garbage with PyPy. Full documentation: http://stackoverflow.com/questions/23156116/pypy-file-append-mode ---------- messages: 6724 nosy: arigo, pypy-issue priority: bug status: unread title: file append mode ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Sat Apr 19 10:29:08 2014 From: tracker at bugs.pypy.org (Armin Rigo) Date: Sat, 19 Apr 2014 08:29:08 +0000 Subject: [pypy-issue] [issue1738] struct.unpack incompatibility with cpython In-Reply-To: <1397831642.18.0.921181921512.issue1738@bugs.pypy.org> Message-ID: <1397896148.3.0.610757773026.issue1738@bugs.pypy.org> Armin Rigo added the comment: Note that the CPython return type depends on the input data: >>> struct.unpack("!Q", "\x00"*8) (0,) >>> struct.unpack("!Q", "\xff"*8) (18446744073709551615L,) Is it really something we need to reproduce in PyPy? PyPy's behavior is at least more consistent, because the return type depends only on the format character... Can you give us an example of Python code that depends on that (and doesn't break horribly when it *does* get a long)? ---------- nosy: +arigo ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Sat Apr 19 13:12:58 2014 From: tracker at bugs.pypy.org (iElectric) Date: Sat, 19 Apr 2014 11:12:58 +0000 Subject: [pypy-issue] [issue1740] Test failure with sqlite-3.8.4.3 In-Reply-To: <1397905978.02.0.95593724986.issue1740@bugs.pypy.org> Message-ID: <1397905978.02.0.95593724986.issue1740@bugs.pypy.org> New submission from iElectric : See the bottom of the log at http://hydra.nixos.org/build/10384611/nixlog/1/raw Easiest way to reproduce with Nix package manager: $ bash <(curl https://nixos.org/nix/install) $ source ~/.nix-profile/etc/profile.d/nix.sh $ nix-build pypy ---------- messages: 6726 nosy: iElectric, pypy-issue priority: bug release: 2.2 status: unread title: Test failure with sqlite-3.8.4.3 ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Sat Apr 19 19:24:26 2014 From: tracker at bugs.pypy.org (Armin Rigo) Date: Sat, 19 Apr 2014 17:24:26 +0000 Subject: [pypy-issue] [issue1740] Test failure with sqlite-3.8.4.3 In-Reply-To: <1397905978.02.0.95593724986.issue1740@bugs.pypy.org> Message-ID: <1397928266.5.0.34220020837.issue1740@bugs.pypy.org> Armin Rigo added the comment: The sqlite test passes for us. Please be more precise: what OS and distribution are you installing on, what exact version of libsqlite is it linking with, etc.? Is that specific to the Nix package manager, or can you reproduce it with the official binary distributions we provide? ---------- nosy: +arigo status: unread -> chatting ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Sat Apr 19 22:41:55 2014 From: tracker at bugs.pypy.org (iElectric) Date: Sat, 19 Apr 2014 20:41:55 +0000 Subject: [pypy-issue] [issue1740] Test failure with sqlite-3.8.4.3 In-Reply-To: <1397905978.02.0.95593724986.issue1740@bugs.pypy.org> Message-ID: <1397940115.52.0.632603200424.issue1740@bugs.pypy.org> iElectric added the comment: Distribution is NixOS. The commit that broke the build is https://github.com/NixOS/nixpkgs/commit/47d783ce9d6d8bad230a818a2c6a1385a1587ee8 As you can see, sqlite to which pypy links was upgraded and that results to a broken test. I'd expect that if you build pypy with sqlite 3.8.4.3, you'd get the same result. ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Sun Apr 20 09:35:34 2014 From: tracker at bugs.pypy.org (Armin Rigo) Date: Sun, 20 Apr 2014 07:35:34 +0000 Subject: [pypy-issue] [issue1740] Test failure with sqlite-3.8.4.3 In-Reply-To: <1397905978.02.0.95593724986.issue1740@bugs.pypy.org> Message-ID: <1397979334.07.0.00315231789158.issue1740@bugs.pypy.org> Armin Rigo added the comment: Cannot reproduce: passes for me with both PyPy 2.2 and PyPy trunk with the version of sqlite freshly installed from 'http://www.sqlite.org/2014/sqlite-autoconf-3080403.tar.gz'. System here is Ubuntu 12.04 64-bit. ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Sun Apr 20 09:38:53 2014 From: tracker at bugs.pypy.org (Christoph Reiter) Date: Sun, 20 Apr 2014 07:38:53 +0000 Subject: [pypy-issue] [issue1706] numpy: numpy.searchsorted missing In-Reply-To: <1394456655.49.0.838090641581.issue1706@bugs.pypy.org> Message-ID: <1397979533.64.0.720072817256.issue1706@bugs.pypy.org> Christoph Reiter added the comment: The given examples work with trunk now. Thanks mattip. https://bitbucket.org/pypy/pypy/commits/e86508502063f283b1344185eb77d6e008e7d654 As pointed out in the commit, the sorter kwarg isn't implemented, but it isn't used in matplotlib. ---------- status: unread -> chatting ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Mon Apr 21 20:14:12 2014 From: tracker at bugs.pypy.org (iElectric) Date: Mon, 21 Apr 2014 18:14:12 +0000 Subject: [pypy-issue] [issue1740] Test failure with sqlite-3.8.4.3 In-Reply-To: <1397905978.02.0.95593724986.issue1740@bugs.pypy.org> Message-ID: <1398104052.25.0.800105373098.issue1740@bugs.pypy.org> iElectric added the comment: Our sqlite is compiled with "-DSQLITE_ENABLE_COLUMN_METADATA=1 - DSQLITE_SECURE_DELETE=1 -DSQLITE_ENABLE_UNLOCK_NOTIFY=1", could that make any difference? ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Tue Apr 22 10:04:12 2014 From: tracker at bugs.pypy.org (Armin Rigo) Date: Tue, 22 Apr 2014 08:04:12 +0000 Subject: [pypy-issue] [issue1740] Test failure with sqlite-3.8.4.3 In-Reply-To: <1397905978.02.0.95593724986.issue1740@bugs.pypy.org> Message-ID: <1398153852.23.0.150375939545.issue1740@bugs.pypy.org> Armin Rigo added the comment: Can you test this latest theory simply by recompiling sqlite3? Also, you should try to reproduce it on CPython, version 2.7.3 (in order to see the exact same test). If this passes, then please try to run the cffi version of '_sqlite3' that comes in pypy's `lib_pypy/_sqlite3` directory, but run on it top of CPython 2.7.3, instead of the built-in version. This might allow us to pinpoint the blame a bit more precisely. ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Tue Apr 22 16:08:11 2014 From: tracker at bugs.pypy.org (lesshaste) Date: Tue, 22 Apr 2014 14:08:11 +0000 Subject: [pypy-issue] [issue1724] numpy: numpy.random.binomial not implemented In-Reply-To: <1396276217.61.0.245768287371.issue1724@bugs.pypy.org> Message-ID: <1398175691.2.0.413064191428.issue1724@bugs.pypy.org> lesshaste added the comment: Seems to work now. Thanks! ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Tue Apr 22 16:08:34 2014 From: tracker at bugs.pypy.org (lesshaste) Date: Tue, 22 Apr 2014 14:08:34 +0000 Subject: [pypy-issue] [issue1727] numpy: numpy.random.choice not implemented In-Reply-To: <1396288915.29.0.9511952625.issue1727@bugs.pypy.org> Message-ID: <1398175714.82.0.257575539582.issue1727@bugs.pypy.org> lesshaste added the comment: Seems to work now. Thanks! ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Tue Apr 22 16:17:44 2014 From: tracker at bugs.pypy.org (lesshaste) Date: Tue, 22 Apr 2014 14:17:44 +0000 Subject: [pypy-issue] [issue1727] numpy: numpy.random.choice not implemented In-Reply-To: <1396288915.29.0.9511952625.issue1727@bugs.pypy.org> Message-ID: <1398176264.75.0.269814982972.issue1727@bugs.pypy.org> lesshaste added the comment: I notice that this still fails however. assert(np.random.choice([None], replace=True) is None) ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Tue Apr 22 19:27:04 2014 From: tracker at bugs.pypy.org (dw) Date: Tue, 22 Apr 2014 17:27:04 +0000 Subject: [pypy-issue] [issue1741] SRE_Pattern.search() of simple pattern causes crazy slowdown In-Reply-To: <1398187624.89.0.0273079302928.issue1741@bugs.pypy.org> Message-ID: <1398187624.89.0.0273079302928.issue1741@bugs.pypy.org> New submission from dw : (Confirmed in 22 Apr nightly) http://github.com/dw/mua/mua/mboxrd.py is a nasty reimplementation of the mailbox module's mbox parser, since that one is slow and doesn't handle Content-length. The module keeps a cache of mmaps and relies on mmap.find() and two regexes to discover message boundaries. My test feeds mboxrd.Mboxrd() a 1.8gb mailbox. A mailbox of the same size, but with about 10x the messages can be downloaded at http://k2.botanicus.net/qemu-all.mbox.bz2 (353mb compressed). On CPython the module can parse out 57k messages in about 9 seconds, whereas on PyPy one of the regexes, CONTENT_LENGTH_PAT or SEPARATOR_PAT, appears to be killing performance. Test script was simply: import mua.mboxrd mbox = mua.mboxrd.Mboxrd('source-mbox') print sum(1 for _ in mbox.iter()) Running PyPy nightly under 'perf record -g' produced: # Overhead Command Shared Object Symbol # ........ ....... .................. .......................................... 35.17% pypy libc-2.18.so [.] __memcpy_sse2_unaligned 11.07% pypy [kernel.kallsyms] [k] clear_page_c 10.64% pypy libc-2.18.so [.] memset 8.25% pypy [kernel.kallsyms] [k] page_fault 4.48% pypy [kernel.kallsyms] [k] _raw_spin_lock 3.60% pypy [kernel.kallsyms] [k] get_page_from_freelist 3.22% pypy [kernel.kallsyms] [k] free_pcppages_bulk 3.15% pypy [kernel.kallsyms] [k] __rmqueue 2.33% pypy [kernel.kallsyms] [k] unmap_single_vma 2.19% pypy [kernel.kallsyms] [k] release_pages 1.66% pypy [kernel.kallsyms] [k] handle_mm_fault 1.33% pypy [kernel.kallsyms] [k] page_add_new_anon_rmap 1.22% pypy [kernel.kallsyms] [k] __pagevec_lru_add_fn 1.06% pypy [kernel.kallsyms] [k] get_pageblock_flags_group 1.00% pypy [kernel.kallsyms] [k] free_hot_cold_page Copies, memsets and faults clearly consume >50% runtime. cProfile output: 13653 function calls (13459 primitive calls) in 60.199 seconds Ordered by: cumulative time ncalls tottime percall cumtime percall filename:lineno(function) 1 0.000 0.000 60.199 60.199 p.py:2() 34 0.000 0.000 60.157 1.769 p.py:5() 34 0.001 0.000 60.157 1.769 mboxrd.py:124(iter) 34 0.002 0.000 60.155 1.769 mboxrd.py:104(_find_content_length_end) 68 60.153 0.885 60.153 0.885 {method 'search' of 'SRE_Pattern' objects} 1 0.000 0.000 0.041 0.041 mboxrd.py:2() 1 0.002 0.002 0.040 0.040 rfc822.py:2() 1 0.000 0.000 0.031 0.031 header.py:5() 1 0.001 0.001 0.027 0.027 quoprimime.py:5() 1 0.002 0.002 0.021 0.021 utils.py:5() 22 0.000 0.000 0.020 0.001 re.py:188(compile) 22 0.000 0.000 0.020 0.001 re.py:226(_compile) 21 0.000 0.000 0.020 0.001 sre_compile.py:493(compile) 21 0.000 0.000 0.011 0.001 sre_compile.py:478(_code) 36 0.000 0.000 0.009 0.000 sre_compile.py:178(_compile_charset) 36 0.005 0.000 0.009 0.000 sre_compile.py:207(_optimize_charset) Notice SRE_Pattern.search only called 68 times in a minute. Attempting to replace the pattern with one that does not rely on re.I provided no speed gain. While chatting with Armin on #pypy I erroneously suggested the copies may be due to mem_file(), which relies on a CPython-specific trick to produce a byte aligned zero copy file-like object over a subset of an mmap, however that code is never invoked. It seems the issue is purely with the regex. ---------- messages: 6736 nosy: dw, pypy-issue priority: performance bug status: unread title: SRE_Pattern.search() of simple pattern causes crazy slowdown ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Tue Apr 22 19:52:55 2014 From: tracker at bugs.pypy.org (dw) Date: Tue, 22 Apr 2014 17:52:55 +0000 Subject: [pypy-issue] [issue1741] SRE_Pattern.search() of buffer object produces copy In-Reply-To: <1398187624.89.0.0273079302928.issue1741@bugs.pypy.org> Message-ID: <1398189175.01.0.596866653676.issue1741@bugs.pypy.org> dw added the comment: Per IRC chat, the bug is not with regexes, but relying on a CPython-specific ability to zero-copy search over a buffer. The behaviour in this bug is due to repeatedly copying a 1.8gb mailbox to a string. ---------- status: unread -> chatting title: SRE_Pattern.search() of simple pattern causes crazy slowdown -> SRE_Pattern.search() of buffer object produces copy ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Tue Apr 22 20:19:02 2014 From: tracker at bugs.pypy.org (mattip) Date: Tue, 22 Apr 2014 18:19:02 +0000 Subject: [pypy-issue] [issue1155] windows creates 2 bytes unicode dtype numpy arrays, not 4 byte In-Reply-To: <1338323756.89.0.35734871804.issue1155@bugs.pypy.org> Message-ID: <1398190742.29.0.41254284661.issue1155@bugs.pypy.org> mattip added the comment: fixed ---------- status: unread -> resolved ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Tue Apr 22 20:41:19 2014 From: tracker at bugs.pypy.org (mattip) Date: Tue, 22 Apr 2014 18:41:19 +0000 Subject: [pypy-issue] [issue889] Windows binary distribution is missing cpyext header files In-Reply-To: <1317395541.31.0.735873324924.issue889@bugs.pypy.org> Message-ID: <1398192079.47.0.426846552849.issue889@bugs.pypy.org> mattip added the comment: fixed a long time ago ---------- nosy: +mattip status: chatting -> resolved ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Tue Apr 22 20:42:32 2014 From: tracker at bugs.pypy.org (mattip) Date: Tue, 22 Apr 2014 18:42:32 +0000 Subject: [pypy-issue] [issue947] error in compiling In-Reply-To: <1322670181.12.0.168844572933.issue947@bugs.pypy.org> Message-ID: <1398192152.22.0.541217090092.issue947@bugs.pypy.org> mattip added the comment: downstream packaging problem ---------- nosy: +mattip status: chatting -> wontfix ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Tue Apr 22 21:06:12 2014 From: tracker at bugs.pypy.org (lesshaste) Date: Tue, 22 Apr 2014 19:06:12 +0000 Subject: [pypy-issue] [issue1737] numpypy running very slow on simple example In-Reply-To: <1397568837.52.0.210564480113.issue1737@bugs.pypy.org> Message-ID: <1398193572.02.0.684619382004.issue1737@bugs.pypy.org> lesshaste added the comment: With Python 2.7.6 (e54a3b9abdc0, Apr 22 2014, 12:41:09) and print timeit.repeat('from __main__ import rosen; import numpy as np; r = np.arange(1000000); print rosen(r)' ,number = 50) I get 3.6s for pypy. I get 1.4s for cpython. ---------- nosy: +lesshaste status: unread -> chatting ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Wed Apr 23 03:17:49 2014 From: tracker at bugs.pypy.org (YAMAMOTO Takashi) Date: Wed, 23 Apr 2014 01:17:49 +0000 Subject: [pypy-issue] [issue1738] struct.unpack incompatibility with cpython In-Reply-To: <1397831642.18.0.921181921512.issue1738@bugs.pypy.org> Message-ID: <1398215869.59.0.168819972063.issue1738@bugs.pypy.org> YAMAMOTO Takashi added the comment: programs can do str() on the result and will be unhappy with the trailing L. some of ryu's regression tests are examples of such programs. https://github.com/osrg/ryu/blob/master/ryu/tests/unit/packet/test_ospf.py#L94 i've seen some msgpack-rpc related program depending on the behavior, too. (i forgot details of this one, sorry) ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Wed Apr 23 08:52:33 2014 From: tracker at bugs.pypy.org (Armin Rigo) Date: Wed, 23 Apr 2014 06:52:33 +0000 Subject: [pypy-issue] [issue1738] struct.unpack incompatibility with cpython In-Reply-To: <1397831642.18.0.921181921512.issue1738@bugs.pypy.org> Message-ID: <1398235953.06.0.570381409299.issue1738@bugs.pypy.org> Armin Rigo added the comment: My point is that on CPython, programs that do str() on the result and are unhappy with the trailing L are broken --- because they will get a trailing L on some inputs. Ryu's regression tests are possibly an exception, in that they are not broken by relying explicitly on the absence of a trailing L, for a specific input value chosen for the test. We have to decide if it's worth taxing the jitted performance of all programs that use unpack() by returning mixed types, in order to support this very special compatibility requirement; or if we say that Ryu should just fix its test to not rely on this detail (similar to how you need to add "gc.collect()" in some tests that verify that __del__() was called). If you have another example where the problem is not in a test, I'd be interested. :-) ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Wed Apr 23 10:36:52 2014 From: tracker at bugs.pypy.org (lesshaste) Date: Wed, 23 Apr 2014 08:36:52 +0000 Subject: [pypy-issue] [issue1737] numpypy running very slow on simple example In-Reply-To: <1397568837.52.0.210564480113.issue1737@bugs.pypy.org> Message-ID: <1398242212.35.0.336086661624.issue1737@bugs.pypy.org> lesshaste added the comment: It might have been helpful to quote [PyPy 2.3.0-alpha0 with GCC 4.8.2] on linux2 ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Wed Apr 23 11:50:28 2014 From: tracker at bugs.pypy.org (Carl Friedrich Bolz) Date: Wed, 23 Apr 2014 09:50:28 +0000 Subject: [pypy-issue] [issue1695] complexity of bytearray operations In-Reply-To: <1392460960.82.0.973503417088.issue1695@bugs.pypy.org> Message-ID: <1398246628.77.0.0309281176037.issue1695@bugs.pypy.org> Carl Friedrich Bolz added the comment: FWIW, getitem on bytearray is constant time. Almost all other operations are indeed still copying. ---------- nosy: +cfbolz ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Wed Apr 23 11:58:28 2014 From: tracker at bugs.pypy.org (Carl Friedrich Bolz) Date: Wed, 23 Apr 2014 09:58:28 +0000 Subject: [pypy-issue] [issue689] RPython exception unpickling a coroutine whose creator's stack has shrunk since it was switch()'d In-Reply-To: <1303401095.54.0.595755932822.issue689@> Message-ID: <1398247108.71.0.871975855397.issue689@bugs.pypy.org> Carl Friedrich Bolz added the comment: FWIW, this kind of code passes nowadays, so I am closing this issue: import pickle import stackless h = None main_coro = stackless.coroutine.getcurrent() def f(): g() global h new_coro = stackless.coroutine() new_coro.bind(lambda x: x, 5) h = pickle.dumps(new_coro) def g(): main_coro.switch() user_coro = stackless.coroutine() user_coro.bind(f) user_coro.switch() user_coro.switch() pickle.loads(h) ---------- nosy: +cfbolz status: unread -> resolved ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Wed Apr 23 12:00:49 2014 From: tracker at bugs.pypy.org (Carl Friedrich Bolz) Date: Wed, 23 Apr 2014 10:00:49 +0000 Subject: [pypy-issue] [issue593] ctypes.Array performance issues In-Reply-To: <1291376950.6.0.045708325851.issue593@> Message-ID: <1398247249.46.0.258638001305.issue593@bugs.pypy.org> Carl Friedrich Bolz added the comment: Just checked, this issue still persists. ---------- nosy: +cfbolz ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Wed Apr 23 12:05:48 2014 From: tracker at bugs.pypy.org (Carl Friedrich Bolz) Date: Wed, 23 Apr 2014 10:05:48 +0000 Subject: [pypy-issue] [issue640] Possible optimization in FOR_ITER on a constant tuple In-Reply-To: <1298411939.69.0.00440583272748.issue640@> Message-ID: <1398247548.09.0.444010469227.issue640@bugs.pypy.org> Carl Friedrich Bolz added the comment: we do better on this nowadays. ---------- nosy: +cfbolz status: chatting -> resolved ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Wed Apr 23 12:10:27 2014 From: tracker at bugs.pypy.org (Carl Friedrich Bolz) Date: Wed, 23 Apr 2014 10:10:27 +0000 Subject: [pypy-issue] [issue517] `_ast` make `lineno` and `col_offset` optional In-Reply-To: <1270415935.27.0.399280169313.issue517@> Message-ID: <1398247827.38.0.252272425067.issue517@bugs.pypy.org> Carl Friedrich Bolz added the comment: this is fixed nowadays. ---------- nosy: +cfbolz status: in-progress -> resolved ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Wed Apr 23 12:14:26 2014 From: tracker at bugs.pypy.org (Carl Friedrich Bolz) Date: Wed, 23 Apr 2014 10:14:26 +0000 Subject: [pypy-issue] [issue670] on translate.py we get very long chains of PlainAttribute.index In-Reply-To: <1300064540.94.0.762860077901.issue670@> Message-ID: <1398248066.53.0.759421971534.issue670@bugs.pypy.org> Carl Friedrich Bolz added the comment: PlainAttribute.index does not exist any more ---------- nosy: +cfbolz status: unread -> resolved ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Wed Apr 23 12:21:00 2014 From: tracker at bugs.pypy.org (Carl Friedrich Bolz) Date: Wed, 23 Apr 2014 10:21:00 +0000 Subject: [pypy-issue] [issue782] Order of calls changes performance In-Reply-To: <1309928436.49.0.58232724526.issue782@bugs.pypy.org> Message-ID: <1398248460.63.0.596919429536.issue782@bugs.pypy.org> Carl Friedrich Bolz added the comment: the two variants are the same speed nowadays. ---------- nosy: +cfbolz status: chatting -> resolved ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Wed Apr 23 12:30:42 2014 From: tracker at bugs.pypy.org (Carl Friedrich Bolz) Date: Wed, 23 Apr 2014 10:30:42 +0000 Subject: [pypy-issue] [issue718] string.plit('\x00') takes 300% longer under pypy1.5 w/jit In-Reply-To: <1305010101.58.0.551756222129.issue718@> Message-ID: <1398249042.04.0.658811574392.issue718@bugs.pypy.org> Carl Friedrich Bolz added the comment: I just checked, this problem still exists. ---------- nosy: +cfbolz ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Wed Apr 23 15:52:53 2014 From: tracker at bugs.pypy.org (Carl Friedrich Bolz) Date: Wed, 23 Apr 2014 13:52:53 +0000 Subject: [pypy-issue] [issue805] 64 bit 30% slower than 32bit pypy In-Reply-To: <1311286651.76.0.72341859087.issue805@bugs.pypy.org> Message-ID: <1398261173.84.0.499631286498.issue805@bugs.pypy.org> Carl Friedrich Bolz added the comment: The example is now the same speed on 32 bit and 64 bit pypy. ---------- nosy: +cfbolz status: unread -> resolved ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Wed Apr 23 16:03:58 2014 From: tracker at bugs.pypy.org (Carl Friedrich Bolz) Date: Wed, 23 Apr 2014 14:03:58 +0000 Subject: [pypy-issue] [issue832] sys.platform is wrong on Linux 3.x on PyPy3 In-Reply-To: <1313518895.9.0.36699993779.issue832@bugs.pypy.org> Message-ID: <1398261838.02.0.561448643384.issue832@bugs.pypy.org> Carl Friedrich Bolz added the comment: this is actually not a problem any more on PyPy, as 2.7 kept using "linux2". On PyPy3, this should be fixed to just "linux" to be compatible with CPython 3.x. ---------- nosy: +cfbolz title: Linux 3.0 kernel fallout -> sys.platform is wrong on Linux 3.x on PyPy3 ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Wed Apr 23 16:26:33 2014 From: tracker at bugs.pypy.org (Carl Friedrich Bolz) Date: Wed, 23 Apr 2014 14:26:33 +0000 Subject: [pypy-issue] [issue837] [custom interpreter] Behavior Differs Between Interpreter and JIT In-Reply-To: <1313854393.08.0.060546386432.issue837@bugs.pypy.org> Message-ID: <1398263193.67.0.91123705186.issue837@bugs.pypy.org> Carl Friedrich Bolz added the comment: Sorry for taking so long to look at this (you probably don't care about it anymore :-( ). I can't reproduce this any more on recent checkouts. Attaching updated file and closing. ---------- nosy: +cfbolz status: chatting -> resolved ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Wed Apr 23 17:43:08 2014 From: tracker at bugs.pypy.org (Carl Friedrich Bolz) Date: Wed, 23 Apr 2014 15:43:08 +0000 Subject: [pypy-issue] [issue865] Struct.pack and unpack 3x and 6x slower than CPython In-Reply-To: <1315452186.86.0.406624978683.issue865@bugs.pypy.org> Message-ID: <1398267788.77.0.856041286962.issue865@bugs.pypy.org> Carl Friedrich Bolz added the comment: This is mostly a property of the insanely long format strings for pack and unpack. For human-sized format strings (e.g. struct.pack("iii", 1, 2, 3)) PyPy is much faster than CPython, both for pack and unpack. Therefore I am closing the issue. If somebody is of the opinion that struct format strings are in practice commonly thousands of characters long, please reopen it. ---------- nosy: +cfbolz status: chatting -> resolved ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Wed Apr 23 18:13:31 2014 From: tracker at bugs.pypy.org (Carl Friedrich Bolz) Date: Wed, 23 Apr 2014 16:13:31 +0000 Subject: [pypy-issue] [issue843] PyPy slower than CPython with puzzle problem In-Reply-To: <1314167447.35.0.774659658214.issue843@bugs.pypy.org> Message-ID: <1398269611.81.0.834167988966.issue843@bugs.pypy.org> Carl Friedrich Bolz added the comment: this is still not fixed, just checked ---------- nosy: +cfbolz ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Wed Apr 23 19:15:39 2014 From: tracker at bugs.pypy.org (Carl Friedrich Bolz) Date: Wed, 23 Apr 2014 17:15:39 +0000 Subject: [pypy-issue] [issue888] json module in pypy is much more lower than cpython In-Reply-To: <1317284039.94.0.390923902277.issue888@bugs.pypy.org> Message-ID: <1398273339.53.0.295200550751.issue888@bugs.pypy.org> Carl Friedrich Bolz added the comment: the gist is gone, and we improved json greatly in the meantime, closing. ---------- nosy: +cfbolz status: chatting -> resolved ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Wed Apr 23 19:19:16 2014 From: tracker at bugs.pypy.org (Carl Friedrich Bolz) Date: Wed, 23 Apr 2014 17:19:16 +0000 Subject: [pypy-issue] [issue931] web site bugs In-Reply-To: <1321876726.07.0.898293402867.issue931@bugs.pypy.org> Message-ID: <1398273556.99.0.644967361371.issue931@bugs.pypy.org> Carl Friedrich Bolz added the comment: this is fixed ---------- nosy: +cfbolz status: unread -> resolved ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Wed Apr 23 19:19:53 2014 From: tracker at bugs.pypy.org (Carl Friedrich Bolz) Date: Wed, 23 Apr 2014 17:19:53 +0000 Subject: [pypy-issue] [issue733] bz2 decompression is very slow In-Reply-To: <1306785194.2.0.717331507866.issue733@bugs.pypy.org> Message-ID: <1398273593.65.0.0661666647249.issue733@bugs.pypy.org> Carl Friedrich Bolz added the comment: this is fixed ---------- nosy: +cfbolz status: chatting -> resolved ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Wed Apr 23 21:06:03 2014 From: tracker at bugs.pypy.org (Philip Jenvey) Date: Wed, 23 Apr 2014 19:06:03 +0000 Subject: [pypy-issue] [issue832] sys.platform is wrong on Linux 3.x on PyPy3 In-Reply-To: <1313518895.9.0.36699993779.issue832@bugs.pypy.org> Message-ID: <1398279963.41.0.0268616383508.issue832@bugs.pypy.org> Philip Jenvey added the comment: The "linux" change doesn't happen until 3.3 ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Wed Apr 23 21:19:01 2014 From: tracker at bugs.pypy.org (Brian Kearns) Date: Wed, 23 Apr 2014 19:19:01 +0000 Subject: [pypy-issue] [issue1718] numpy: bug with linalg.norm In-Reply-To: <1395757888.89.0.725383810343.issue1718@bugs.pypy.org> Message-ID: <1398280741.52.0.06798307272.issue1718@bugs.pypy.org> Brian Kearns added the comment: fixed in d91034c74551 ---------- nosy: +bdk status: unread -> resolved ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Wed Apr 23 22:33:02 2014 From: tracker at bugs.pypy.org (Carl Friedrich Bolz) Date: Wed, 23 Apr 2014 20:33:02 +0000 Subject: [pypy-issue] [issue821] __debug__ is always True In-Reply-To: <1312894316.8.0.232369941601.issue821@bugs.pypy.org> Message-ID: <1398285182.28.0.239691776161.issue821@bugs.pypy.org> Carl Friedrich Bolz added the comment: This works correctly nowadays, including not running asserts when -O is given. ---------- nosy: +cfbolz status: chatting -> resolved ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Wed Apr 23 22:39:24 2014 From: tracker at bugs.pypy.org (Carl Friedrich Bolz) Date: Wed, 23 Apr 2014 20:39:24 +0000 Subject: [pypy-issue] [issue927] Task takes more time on nightly than CPython 2.7 In-Reply-To: <1320950688.87.0.253474601819.issue927@bugs.pypy.org> Message-ID: <1398285564.58.0.796649655701.issue927@bugs.pypy.org> Carl Friedrich Bolz added the comment: this problem is still there ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Wed Apr 23 22:39:48 2014 From: tracker at bugs.pypy.org (Carl Friedrich Bolz) Date: Wed, 23 Apr 2014 20:39:48 +0000 Subject: [pypy-issue] [issue999] rename virtualizable2 to virtualizable In-Reply-To: <1326383024.25.0.72133139277.issue999@bugs.pypy.org> Message-ID: <1398285588.98.0.996422250067.issue999@bugs.pypy.org> Carl Friedrich Bolz added the comment: done ---------- status: unread -> resolved ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Wed Apr 23 22:47:24 2014 From: tracker at bugs.pypy.org (Carl Friedrich Bolz) Date: Wed, 23 Apr 2014 20:47:24 +0000 Subject: [pypy-issue] [issue1027] Do something with longs In-Reply-To: <1327801749.1.0.844113427834.issue1027@bugs.pypy.org> Message-ID: <1398286044.06.0.880365656501.issue1027@bugs.pypy.org> Carl Friedrich Bolz added the comment: long's are a lot better since Stian Andreassen make them use 128 bit ints. if there are specific problem areas, please open new issues. ---------- nosy: +cfbolz status: unread -> resolved ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Wed Apr 23 22:52:49 2014 From: tracker at bugs.pypy.org (Carl Friedrich Bolz) Date: Wed, 23 Apr 2014 20:52:49 +0000 Subject: [pypy-issue] [issue1031] Speed of a tiny arithmetic program In-Reply-To: <1327959566.62.0.373732238148.issue1031@bugs.pypy.org> Message-ID: <1398286369.12.0.170247502256.issue1031@bugs.pypy.org> Carl Friedrich Bolz added the comment: can't find the code, pocoo is gone. longs are bigger now, closing this. ---------- nosy: +cfbolz status: chatting -> invalid ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Wed Apr 23 22:56:29 2014 From: tracker at bugs.pypy.org (Carl Friedrich Bolz) Date: Wed, 23 Apr 2014 20:56:29 +0000 Subject: [pypy-issue] [issue1029] cpython test_subprocess.py fails In-Reply-To: <1327889370.62.0.40349489632.issue1029@bugs.pypy.org> Message-ID: <1398286589.2.0.827281879427.issue1029@bugs.pypy.org> Carl Friedrich Bolz added the comment: we are by now on the 2.7.6 stdlib and test_subprocess.py passes (both the official one, and the attachment). closing this one. ---------- nosy: +cfbolz status: chatting -> resolved ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Wed Apr 23 23:09:56 2014 From: tracker at bugs.pypy.org (Carl Friedrich Bolz) Date: Wed, 23 Apr 2014 21:09:56 +0000 Subject: [pypy-issue] [issue1093] PyPy list element del insert too slow In-Reply-To: <1332225507.83.0.0822621714333.issue1093@bugs.pypy.org> Message-ID: <1398287396.54.0.446851249945.issue1093@bugs.pypy.org> Carl Friedrich Bolz added the comment: problem still persists ---------- nosy: +cfbolz ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Thu Apr 24 00:50:43 2014 From: tracker at bugs.pypy.org (Brian Kearns) Date: Wed, 23 Apr 2014 22:50:43 +0000 Subject: [pypy-issue] [issue1741] SRE_Pattern.search() of buffer object produces copy In-Reply-To: <1398187624.89.0.0273079302928.issue1741@bugs.pypy.org> Message-ID: <1398293443.14.0.403672583785.issue1741@bugs.pypy.org> Brian Kearns added the comment: fixed in 42dcc26ee1d1 using test script/mailbox: CPython time: 21.8s PyPy time: 7.6s ---------- nosy: +bdk status: chatting -> resolved ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Thu Apr 24 12:06:21 2014 From: tracker at bugs.pypy.org (Carl Friedrich Bolz) Date: Thu, 24 Apr 2014 10:06:21 +0000 Subject: [pypy-issue] [issue656] Python code 20x slower than C++ In-Reply-To: <1299190112.86.0.871909841991.issue656@> Message-ID: <1398333981.34.0.105075423868.issue656@bugs.pypy.org> Carl Friedrich Bolz added the comment: pypy is faster than -O0 C++ nowadays (and 3x slower than -O3) sounds good enough to me. ---------- nosy: +cfbolz status: chatting -> resolved ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Thu Apr 24 16:21:11 2014 From: tracker at bugs.pypy.org (mattip) Date: Thu, 24 Apr 2014 14:21:11 +0000 Subject: [pypy-issue] [issue824] Memory usage in time of pytest.py running under pypy In-Reply-To: <1312999682.79.0.0434436051096.issue824@bugs.pypy.org> Message-ID: <1398349271.04.0.530017252037.issue824@bugs.pypy.org> mattip added the comment: fixed over the past two years ---------- nosy: +mattip status: unread -> resolved ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Thu Apr 24 16:27:44 2014 From: tracker at bugs.pypy.org (Carl Friedrich Bolz) Date: Thu, 24 Apr 2014 14:27:44 +0000 Subject: [pypy-issue] [issue1022] dict.update significantly slower than series of dict.__setitem__ In-Reply-To: <1327497000.97.0.209820064529.issue1022@bugs.pypy.org> Message-ID: <1398349664.69.0.341406701341.issue1022@bugs.pypy.org> Carl Friedrich Bolz added the comment: by now our **args handling is much better, so the .update version is only 4x slower than individual setitems. that seems reasonable to me, so I am closing for now. If somebody really needs this a lot faster something could be unrolled, please reopen the issue in that case. ---------- nosy: +cfbolz status: chatting -> resolved ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Thu Apr 24 16:34:43 2014 From: tracker at bugs.pypy.org (mattip) Date: Thu, 24 Apr 2014 14:34:43 +0000 Subject: [pypy-issue] [issue818] MySQLdb-python 1.2.3 segmentation fault on PyPy 1.5 OSX 64bit In-Reply-To: <1312348925.51.0.409461052367.issue818@bugs.pypy.org> Message-ID: <1398350083.38.0.431496389458.issue818@bugs.pypy.org> mattip added the comment: please resubmit if this is still relevant with latest versions of PyPy and MySQLdb-python. ---------- nosy: +mattip status: unread -> wontfix ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Thu Apr 24 16:38:30 2014 From: tracker at bugs.pypy.org (mattip) Date: Thu, 24 Apr 2014 14:38:30 +0000 Subject: [pypy-issue] [issue1185] [cpyext] Missing members in PyThreadState In-Reply-To: <1340183075.33.0.933059413836.issue1185@bugs.pypy.org> Message-ID: <1398350310.32.0.402640821867.issue1185@bugs.pypy.org> mattip added the comment: bug tracker cleanup: is this still relevant or can we close it? ---------- nosy: +mattip ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Thu Apr 24 16:41:51 2014 From: tracker at bugs.pypy.org (mattip) Date: Thu, 24 Apr 2014 14:41:51 +0000 Subject: [pypy-issue] [issue1128] add the possibility to search on the release field on roundup In-Reply-To: <1334341487.64.0.694725686163.issue1128@bugs.pypy.org> Message-ID: <1398350511.53.0.504241098312.issue1128@bugs.pypy.org> mattip added the comment: recent discussion on irc lead to the request to remove the confusing Release tag and use "Priority" instead, since it is not clear whether Release refers to the target or to the version where the issue appeared. In any case most reports include a version of the interpreter used to reproduce. I vote to remove the Release tag, and mark this issue as "won't-fix", do you disagree? ---------- nosy: +antocuni, mattip ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Thu Apr 24 17:53:18 2014 From: tracker at bugs.pypy.org (Carl Friedrich Bolz) Date: Thu, 24 Apr 2014 15:53:18 +0000 Subject: [pypy-issue] [issue1328] unbreak cProfile jitting In-Reply-To: <1353277066.05.0.0979170791847.issue1328@bugs.pypy.org> Message-ID: <1398354798.05.0.853568493298.issue1328@bugs.pypy.org> Carl Friedrich Bolz added the comment: I was hoping to just close this issue, but it seems that the jitting of cProfile is simply broken atm. cProfile contains two elidables that are ignored after the recent elidable changes. This is a rather big regression, which we didn't notice as there is neither a benchmark, nor a test_pypy_c test about it. ---------- nosy: +cfbolz priority: performance bug -> critical status: testing -> chatting title: cProfile: slow on built-in function calls -> unbreak cProfile jitting ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Thu Apr 24 22:38:30 2014 From: tracker at bugs.pypy.org (mattip) Date: Thu, 24 Apr 2014 20:38:30 +0000 Subject: [pypy-issue] [issue1421] pypy latest trips over pyftpdlib-1.0.1 storage related tests In-Reply-To: <1363175650.76.0.196546286513.issue1421@bugs.pypy.org> Message-ID: <1398371910.24.0.628155347654.issue1421@bugs.pypy.org> mattip added the comment: issue cleanup - marking this as resolved. Please reopen if needed. ---------- nosy: +mattip status: chatting -> resolved ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Fri Apr 25 06:55:15 2014 From: tracker at bugs.pypy.org (Peter Xu) Date: Fri, 25 Apr 2014 04:55:15 +0000 Subject: [pypy-issue] [issue1742] pypy_interact.py pushes the wrong sys.path In-Reply-To: <1398401715.97.0.531743038549.issue1742@bugs.pypy.org> Message-ID: <1398401715.97.0.531743038549.issue1742@bugs.pypy.org> New submission from Peter Xu : When running python pypy_interact.py path/to/pypy-c-sandbox, we get: $ python pypy_interact.py ../goal/pypy-c-sandbox Traceback (most recent call last): File "pypy_interact.py", line 25, in from rpython.translator.sandbox.sandlib import SimpleIOSandboxedProc ImportError: No module named rpython.translator.sandbox.sandlib This is because of the line: sys.path.insert(0, os.path.realpath(os.path.join(os.path.dirname(__file__), '..', '..', '..'))) Which doesn't work for the new directory structure (it used to be pypy/translator/sandbox rather than pypy/sandbox). Substituting in sys.path.insert(0, os.path.realpath(os.path.join(os.path.dirname(__file__), '..', '..', '..'))) fixes the problem. ---------- messages: 6782 nosy: peter, pypy-issue priority: bug status: unread title: pypy_interact.py pushes the wrong sys.path ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Fri Apr 25 06:56:35 2014 From: tracker at bugs.pypy.org (Peter Xu) Date: Fri, 25 Apr 2014 04:56:35 +0000 Subject: [pypy-issue] [issue1742] pypy_interact.py pushes the wrong sys.path In-Reply-To: <1398401795.45.0.527678437615.issue1742@bugs.pypy.org> Message-ID: <1398401795.45.0.527678437615.issue1742@bugs.pypy.org> New submission from Peter Xu : When running python pypy_interact.py path/to/pypy-c-sandbox, we get: $ python pypy_interact.py ../goal/pypy-c-sandbox Traceback (most recent call last): File "pypy_interact.py", line 25, in from rpython.translator.sandbox.sandlib import SimpleIOSandboxedProc ImportError: No module named rpython.translator.sandbox.sandlib This is because of the line: sys.path.insert(0, os.path.realpath(os.path.join(os.path.dirname(__file__), '..', '..', '..'))) Which doesn't work for the new directory structure (it used to be pypy/translator/sandbox rather than pypy/sandbox). Substituting in sys.path.insert(0, os.path.realpath(os.path.join(os.path.dirname(__file__), '..', '..'))) fixes the problem. ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Fri Apr 25 09:32:04 2014 From: tracker at bugs.pypy.org (Armin Rigo) Date: Fri, 25 Apr 2014 07:32:04 +0000 Subject: [pypy-issue] [issue1742] pypy_interact.py pushes the wrong sys.path In-Reply-To: <1398401795.45.0.527678437615.issue1742@bugs.pypy.org> Message-ID: <1398411124.61.0.813028896874.issue1742@bugs.pypy.org> Armin Rigo added the comment: Thanks! Applied your patch in a65f77b101c2. ---------- nosy: +arigo status: chatting -> resolved ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Fri Apr 25 09:38:15 2014 From: tracker at bugs.pypy.org (Armin Rigo) Date: Fri, 25 Apr 2014 07:38:15 +0000 Subject: [pypy-issue] [issue1421] pypy latest trips over pyftpdlib-1.0.1 storage related tests In-Reply-To: <1363175650.76.0.196546286513.issue1421@bugs.pypy.org> Message-ID: <1398411495.36.0.855053377266.issue1421@bugs.pypy.org> Armin Rigo added the comment: mattip: I would not blindly close issues; I'd rather that we try to reproduce the original reported issue, and only close issues where that is not reasonably possible (or, of course, where we can see that the bug disappeared in the meantime). If you tried but can't for some reason, please explain it in the closing message. ---------- nosy: +arigo status: resolved -> chatting ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Fri Apr 25 09:43:08 2014 From: tracker at bugs.pypy.org (Armin Rigo) Date: Fri, 25 Apr 2014 07:43:08 +0000 Subject: [pypy-issue] [issue818] MySQLdb-python 1.2.3 segmentation fault on PyPy 1.5 OSX 64bit In-Reply-To: <1312348925.51.0.409461052367.issue818@bugs.pypy.org> Message-ID: <1398411788.87.0.118536696041.issue818@bugs.pypy.org> Armin Rigo added the comment: More precisely: sorry to never come back to you. Your bug report is far insufficient for us to know what is wrong (and, additionally, it might have been fixed in the meantime). If it is still relevant with the latest versions of PyPy, we need complete "how-to-reproduce" instructions. If it only occurs very rarely when you do some operation, please give the instructions anyway, as well as a script that you think will eventually trigger the bug if running for long enough. If it's really a once-only crash, then I'm afraid we can't do anything... ---------- nosy: +arigo status: wontfix -> invalid ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Fri Apr 25 09:47:21 2014 From: tracker at bugs.pypy.org (Armin Rigo) Date: Fri, 25 Apr 2014 07:47:21 +0000 Subject: [pypy-issue] [issue1328] unbreak cProfile jitting In-Reply-To: <1353277066.05.0.0979170791847.issue1328@bugs.pypy.org> Message-ID: <1398412041.56.0.587708167696.issue1328@bugs.pypy.org> Armin Rigo added the comment: Should we now really turn ignored @elidables into crashes, and fix those crashes? Didn't wim checked in something about them in cppyy, recently? ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Fri Apr 25 09:52:30 2014 From: tracker at bugs.pypy.org (Armin Rigo) Date: Fri, 25 Apr 2014 07:52:30 +0000 Subject: [pypy-issue] [issue1328] unbreak cProfile jitting In-Reply-To: <1353277066.05.0.0979170791847.issue1328@bugs.pypy.org> Message-ID: <1398412350.42.0.810460770111.issue1328@bugs.pypy.org> Armin Rigo added the comment: ...yes, according to this, we have only two remaining places, both in _lsprof, where we produce the warning "this calls an _elidable_function_, but this contradicts other sources": http://buildbot.pypy.org/builders/pypy-c-jit-linux-x86-64/builds/2030/steps/translate/logs/stdio I'd suggest we fix them and then turn the warning into an error. ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Fri Apr 25 17:45:24 2014 From: tracker at bugs.pypy.org (Denis) Date: Fri, 25 Apr 2014 15:45:24 +0000 Subject: [pypy-issue] [issue1743] greenlet does not save/restore sys.exc_info In-Reply-To: <1398440724.06.0.629470188574.issue1743@bugs.pypy.org> Message-ID: <1398440724.06.0.629470188574.issue1743@bugs.pypy.org> New submission from Denis : https://github.com/surfly/gevent/blob/master/greentest/test__real_greenlet.py This test passed on CPython + greenlet 0.4.0 but fails on master ~/work/gevent/greentest $ pypy --version Python 2.7.3 (2.2.1+dfsg-1~ppa1, Nov 28 2013, 02:02:56) [PyPy 2.2.1 with GCC 4.6.3] ---------- messages: 6789 nosy: denis, pypy-issue priority: bug status: unread title: greenlet does not save/restore sys.exc_info ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Fri Apr 25 20:38:41 2014 From: tracker at bugs.pypy.org (Behold) Date: Fri, 25 Apr 2014 18:38:41 +0000 Subject: [pypy-issue] [issue1744] py3k: pypy_interact.py exits with an AttributeError when trying to use the sandbox feature In-Reply-To: <1398451121.66.0.501624072279.issue1744@bugs.pypy.org> Message-ID: <1398451121.66.0.501624072279.issue1744@bugs.pypy.org> New submission from Behold : After compiling PyPy3 2.1 beta 1 by following the instructions at http://pypy.readthedocs.org/en/latest/sandbox.html, I get the following when trying to run pypy_interact.py from the pypy/sandbox directory: $ PYTHONPATH=../../ python2 pypy_interact.py ../goal/pypy-c debug: OperationError: debug: operror-type: AttributeError debug: operror-value: 'NoneType' object has no attribute 'isatty' [Subprocess exit code: 1] ---------- files: pypy3_interact.log messages: 6790 nosy: Behold, pypy-issue priority: bug status: unread title: py3k: pypy_interact.py exits with an AttributeError when trying to use the sandbox feature ________________________________________ PyPy bug tracker ________________________________________ -------------- next part -------------- [sandlib:call] ll_os.ll_os_getenv('PYPY_GENERATIONGC_NURSERY') [sandlib:result] None [sandlib:call] ll_os.ll_os_getenv('PYPY_GC_DEBUG') [sandlib:result] None [sandlib:call] ll_os.ll_os_envitems() [sandlib:result] [] [sandlib:call] ll_os.ll_os_stat('/bin/pypy-c') [sandlib:vpath] '/bin/pypy-c' => [sandlib:result] posix.stat_result(st...ctime=0) [sandlib:call] ll_os.ll_os_lstat('/bin/pypy-c') [sandlib:vpath] '/bin/pypy-c' => [sandlib:result] posix.stat_result(st...ctime=0) [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3') [sandlib:vpath] '/bin/lib-python/3' => [sandlib:result] posix.stat_result(st...ctime=0) [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy') [sandlib:vpath] '/bin/lib_pypy' => [sandlib:result] posix.stat_result(st...ctime=0) [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/os') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/os.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy') [sandlib:vpath] '/bin/lib_pypy' => [sandlib:result] posix.stat_result(st...ctime=0) [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/os') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/os' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/os.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/os.py' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3') [sandlib:vpath] '/bin/lib-python/3' => [sandlib:result] posix.stat_result(st...ctime=0) [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/os') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/os' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/os.py') [sandlib:vpath] '/bin/lib-python/3/os.py' => [sandlib:result] posix.stat_result(st...ctime=0) [sandlib:call] ll_os.ll_os_open('/bin/lib-python/3/os.py', 0, 438) [sandlib:vpath] '/bin/lib-python/3/os.py' => [sandlib:result] 3 [sandlib:call] ll_os.ll_os_read(3, 8192) [sandlib:result] 'r"""OS routines for...ptional' [sandlib:call] ll_os.ll_os_read(3, 8192) [sandlib:result] ' argument \'followl...raise T' [sandlib:call] ll_os.ll_os_read(3, 8192) [sandlib:result] 'ypeError("str expec...t NameE' [sandlib:call] ll_os.ll_os_read(3, 8192) [sandlib:result] 'rror: # stat_result...args)\n' [sandlib:call] ll_os.ll_os_read(3, 8192) [sandlib:result] '' [sandlib:call] ll_os.ll_os_read(3, 8192) [sandlib:result] '' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/posixpath') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/posixpath.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/posixpath') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/posixpath' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/posixpath.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/posixpath.py' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/posixpath') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/posixpath' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/posixpath.py') [sandlib:vpath] '/bin/lib-python/3/posixpath.py' => [sandlib:result] posix.stat_result(st...ctime=0) [sandlib:call] ll_os.ll_os_open('/bin/lib-python/3/posixpath.py', 0, 438) [sandlib:vpath] '/bin/lib-python/3/posixpath.py' => [sandlib:result] 4 [sandlib:call] ll_os.ll_os_read(4, 8192) [sandlib:result] '"""Common operation... forms ' [sandlib:call] ll_os.ll_os_read(4, 8192) [sandlib:result] '$variable and ${var...list)\n' [sandlib:call] ll_os.ll_os_read(4, 8192) [sandlib:result] '' [sandlib:call] ll_os.ll_os_read(4, 8192) [sandlib:result] '' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/stat') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/stat.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/stat') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/stat' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/stat.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/stat.py' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/stat') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/stat' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/stat.py') [sandlib:vpath] '/bin/lib-python/3/stat.py' => [sandlib:result] posix.stat_result(st...ctime=0) [sandlib:call] ll_os.ll_os_open('/bin/lib-python/3/stat.py', 0, 438) [sandlib:vpath] '/bin/lib-python/3/stat.py' => [sandlib:result] 5 [sandlib:call] ll_os.ll_os_read(5, 8192) [sandlib:result] '"""Constants/functi...00000\n' [sandlib:call] ll_os.ll_os_read(5, 8192) [sandlib:result] '' [sandlib:call] ll_os.ll_os_read(5, 8192) [sandlib:result] '' [sandlib:call] ll_os.ll_os_close(5) [sandlib:result] None [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/genericpath') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/genericpath.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/genericpath') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/genericpath' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/genericpath.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/genericpath.py' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/genericpath') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/genericpath' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/genericpath.py') [sandlib:vpath] '/bin/lib-python/3/genericpath.py' => [sandlib:result] posix.stat_result(st...ctime=0) [sandlib:call] ll_os.ll_os_open('/bin/lib-python/3/genericpath.py', 0, 438) [sandlib:vpath] '/bin/lib-python/3/genericpath.py' => [sandlib:result] 5 [sandlib:call] ll_os.ll_os_read(5, 8192) [sandlib:result] '"""\nPath operation...p[:0]\n' [sandlib:call] ll_os.ll_os_read(5, 8192) [sandlib:result] '' [sandlib:call] ll_os.ll_os_read(5, 8192) [sandlib:result] '' [sandlib:call] ll_os.ll_os_close(5) [sandlib:result] None [sandlib:call] ll_os.ll_os_close(4) [sandlib:result] None [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/types') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/types.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/types') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/types' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/types.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/types.py' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/types') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/types' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/types.py') [sandlib:vpath] '/bin/lib-python/3/types.py' => [sandlib:result] posix.stat_result(st...ctime=0) [sandlib:call] ll_os.ll_os_open('/bin/lib-python/3/types.py', 0, 438) [sandlib:vpath] '/bin/lib-python/3/types.py' => [sandlib:result] 4 [sandlib:call] ll_os.ll_os_read(4, 8192) [sandlib:result] '"""\nDefine names f...xport\n' [sandlib:call] ll_os.ll_os_read(4, 8192) [sandlib:result] '' [sandlib:call] ll_os.ll_os_read(4, 8192) [sandlib:result] '' [sandlib:call] ll_os.ll_os_close(4) [sandlib:result] None [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/_abcoll') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/_abcoll.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/_abcoll') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/_abcoll' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/_abcoll.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/_abcoll.py' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/_abcoll') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/_abcoll' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/_abcoll.py') [sandlib:vpath] '/bin/lib-python/3/_abcoll.py' => [sandlib:result] posix.stat_result(st...ctime=0) [sandlib:call] ll_os.ll_os_open('/bin/lib-python/3/_abcoll.py', 0, 438) [sandlib:vpath] '/bin/lib-python/3/_abcoll.py' => [sandlib:result] 4 [sandlib:call] ll_os.ll_os_read(4, 8192) [sandlib:result] '# Copyright 2007 Go...ot in s' [sandlib:call] ll_os.ll_os_read(4, 8192) [sandlib:result] 'elf:\n r...tring\n' [sandlib:call] ll_os.ll_os_read(4, 8192) [sandlib:result] '' [sandlib:call] ll_os.ll_os_read(4, 8192) [sandlib:result] '' [sandlib:call] ll_os.ll_os_close(4) [sandlib:result] None [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/encodings') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/encodings.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/encodings') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/encodings' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/encodings.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/encodings.py' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/encodings') [sandlib:vpath] '/bin/lib-python/3/encodings' => [sandlib:result] posix.stat_result(st...ctime=0) [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/encodings/__init__.py') [sandlib:vpath] '/bin/lib-python/3/encodings/__init__.py' => [sandlib:result] posix.stat_result(st...ctime=0) [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/encodings/__init__') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/encodings/__init__' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/encodings/__init__.py') [sandlib:vpath] '/bin/lib-python/3/encodings/__init__.py' => [sandlib:result] posix.stat_result(st...ctime=0) [sandlib:call] ll_os.ll_os_open('/bin/lib-python/3/encodings/__init__.py', 0, 438) [sandlib:vpath] '/bin/lib-python/3/encodings/__init__.py' => [sandlib:result] 4 [sandlib:call] ll_os.ll_os_read(4, 8192) [sandlib:result] '""" Standard "encod...tion)\n' [sandlib:call] ll_os.ll_os_read(4, 8192) [sandlib:result] '' [sandlib:call] ll_os.ll_os_read(4, 8192) [sandlib:result] '' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/codecs') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/codecs.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/codecs') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/codecs' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/codecs.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/codecs.py' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/codecs') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/codecs' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/codecs.py') [sandlib:vpath] '/bin/lib-python/3/codecs.py' => [sandlib:result] posix.stat_result(st...ctime=0) [sandlib:call] ll_os.ll_os_open('/bin/lib-python/3/codecs.py', 0, 438) [sandlib:vpath] '/bin/lib-python/3/codecs.py' => [sandlib:result] 5 [sandlib:call] ll_os.ll_os_read(5, 8192) [sandlib:result] '""" codecs -- Pytho... of the' [sandlib:call] ll_os.ll_os_read(5, 8192) [sandlib:result] ' decoder.\n\n ... rai' [sandlib:call] ll_os.ll_os_read(5, 8192) [sandlib:result] 'se\n # k...es set ' [sandlib:call] ll_os.ll_os_read(5, 8192) [sandlib:result] 'by the file wrapper...ntalEnc' [sandlib:call] ll_os.ll_os_read(5, 8192) [sandlib:result] 'oder\n construct...-1\')\n' [sandlib:call] ll_os.ll_os_read(5, 8192) [sandlib:result] '' [sandlib:call] ll_os.ll_os_read(5, 8192) [sandlib:result] '' [sandlib:call] ll_os.ll_os_close(5) [sandlib:result] None [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/encodings') [sandlib:vpath] '/bin/lib-python/3/encodings' => [sandlib:result] posix.stat_result(st...ctime=0) [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/encodings/aliases') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/encodings/aliases' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/encodings/aliases.py') [sandlib:vpath] '/bin/lib-python/3/encodings/aliases.py' => [sandlib:result] posix.stat_result(st...ctime=0) [sandlib:call] ll_os.ll_os_open('/bin/lib-python/3/encodings/aliases.py', 0, 438) [sandlib:vpath] '/bin/lib-python/3/encodings/aliases.py' => [sandlib:result] 5 [sandlib:call] ll_os.ll_os_read(5, 8192) [sandlib:result] '""" Encoding Aliase... ' [sandlib:call] ll_os.ll_os_read(5, 8192) [sandlib:result] " : 'iso8859_10',...',\n}\n" [sandlib:call] ll_os.ll_os_read(5, 8192) [sandlib:result] '' [sandlib:call] ll_os.ll_os_read(5, 8192) [sandlib:result] '' [sandlib:call] ll_os.ll_os_close(5) [sandlib:result] None [sandlib:call] ll_os.ll_os_close(4) [sandlib:result] None [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/encodings/ascii') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/encodings/ascii' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/encodings/ascii.py') [sandlib:vpath] '/bin/lib-python/3/encodings/ascii.py' => [sandlib:result] posix.stat_result(st...ctime=0) [sandlib:call] ll_os.ll_os_open('/bin/lib-python/3/encodings/ascii.py', 0, 438) [sandlib:vpath] '/bin/lib-python/3/encodings/ascii.py' => [sandlib:result] 4 [sandlib:call] ll_os.ll_os_read(4, 8192) [sandlib:result] '""" Python \'ascii\... )\n' [sandlib:call] ll_os.ll_os_read(4, 8192) [sandlib:result] '' [sandlib:call] ll_os.ll_os_read(4, 8192) [sandlib:result] '' [sandlib:call] ll_os.ll_os_close(4) [sandlib:result] None [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/copyreg') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/copyreg.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/copyreg') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/copyreg' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/copyreg.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/copyreg.py' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/copyreg') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/copyreg' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/copyreg.py') [sandlib:vpath] '/bin/lib-python/3/copyreg.py' => [sandlib:result] posix.stat_result(st...ctime=0) [sandlib:call] ll_os.ll_os_open('/bin/lib-python/3/copyreg.py', 0, 438) [sandlib:vpath] '/bin/lib-python/3/copyreg.py' => [sandlib:result] 4 [sandlib:call] ll_os.ll_os_read(4, 8192) [sandlib:result] '"""Helper to provid...tion.\n' [sandlib:call] ll_os.ll_os_read(4, 8192) [sandlib:result] '' [sandlib:call] ll_os.ll_os_read(4, 8192) [sandlib:result] '' [sandlib:call] ll_os.ll_os_close(4) [sandlib:result] None [sandlib:call] ll_os.ll_os_close(3) [sandlib:result] None [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/encodings/utf_8') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/encodings/utf_8' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/encodings/utf_8.py') [sandlib:vpath] '/bin/lib-python/3/encodings/utf_8.py' => [sandlib:result] posix.stat_result(st...ctime=0) [sandlib:call] ll_os.ll_os_open('/bin/lib-python/3/encodings/utf_8.py', 0, 438) [sandlib:vpath] '/bin/lib-python/3/encodings/utf_8.py' => [sandlib:result] 3 [sandlib:call] ll_os.ll_os_read(3, 8192) [sandlib:result] '""" Python \'utf-8\... )\n' [sandlib:call] ll_os.ll_os_read(3, 8192) [sandlib:result] '' [sandlib:call] ll_os.ll_os_read(3, 8192) [sandlib:result] '' [sandlib:call] ll_os.ll_os_close(3) [sandlib:result] None [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/encodings/latin_1') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/encodings/latin_1' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/encodings/latin_1.py') [sandlib:vpath] '/bin/lib-python/3/encodings/latin_1.py' => [sandlib:result] posix.stat_result(st...ctime=0) [sandlib:call] ll_os.ll_os_open('/bin/lib-python/3/encodings/latin_1.py', 0, 438) [sandlib:vpath] '/bin/lib-python/3/encodings/latin_1.py' => [sandlib:result] 3 [sandlib:call] ll_os.ll_os_read(3, 8192) [sandlib:result] '""" Python \'latin-... )\n' [sandlib:call] ll_os.ll_os_read(3, 8192) [sandlib:result] '' [sandlib:call] ll_os.ll_os_read(3, 8192) [sandlib:result] '' [sandlib:call] ll_os.ll_os_close(3) [sandlib:result] None [sandlib:call] ll_os.ll_os_fstat(0) [sandlib:exception] OSError: [Errno 9] bad file descriptor [sandlib:call] ll_os.ll_os_strerror(9) [sandlib:result] 'Bad file descriptor' [sandlib:call] ll_os.ll_os_fstat(1) [sandlib:exception] OSError: [Errno 9] bad file descriptor [sandlib:call] ll_os.ll_os_strerror(9) [sandlib:result] 'Bad file descriptor' [sandlib:call] ll_os.ll_os_fstat(2) [sandlib:exception] OSError: [Errno 9] bad file descriptor [sandlib:call] ll_os.ll_os_strerror(9) [sandlib:result] 'Bad file descriptor' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/site') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/site.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/site') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/site' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/site.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/site.py' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/site') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/site' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/site.py') [sandlib:vpath] '/bin/lib-python/3/site.py' => [sandlib:result] posix.stat_result(st...ctime=0) [sandlib:call] ll_os.ll_os_open('/bin/lib-python/3/site.py', 0, 438) [sandlib:vpath] '/bin/lib-python/3/site.py' => [sandlib:result] 3 [sandlib:call] ll_os.ll_os_read(3, 8192) [sandlib:result] '"""Append module se...lib\', ' [sandlib:call] ll_os.ll_os_read(3, 8192) [sandlib:result] '\'osx_framework_use...."""\n ' [sandlib:call] ll_os.ll_os_read(3, 8192) [sandlib:result] ' try:\n im...ipt()\n' [sandlib:call] ll_os.ll_os_read(3, 8192) [sandlib:result] '' [sandlib:call] ll_os.ll_os_read(3, 8192) [sandlib:result] '' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/traceback') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/traceback.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/traceback') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/traceback' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/traceback.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/traceback.py' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/traceback') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/traceback' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/traceback.py') [sandlib:vpath] '/bin/lib-python/3/traceback.py' => [sandlib:result] posix.stat_result(st...ctime=0) [sandlib:call] ll_os.ll_os_open('/bin/lib-python/3/traceback.py', 0, 438) [sandlib:vpath] '/bin/lib-python/3/traceback.py' => [sandlib:result] 4 [sandlib:call] ll_os.ll_os_read(4, 8192) [sandlib:result] '"""Extract, format ...\')[:of' [sandlib:call] ll_os.ll_os_read(4, 8192) [sandlib:result] 'fset].lstrip()\n ... list\n' [sandlib:call] ll_os.ll_os_read(4, 8192) [sandlib:result] '' [sandlib:call] ll_os.ll_os_read(4, 8192) [sandlib:result] '' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/linecache') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/linecache.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/linecache') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/linecache' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/linecache.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/linecache.py' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/linecache') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/linecache' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/linecache.py') [sandlib:vpath] '/bin/lib-python/3/linecache.py' => [sandlib:result] posix.stat_result(st...ctime=0) [sandlib:call] ll_os.ll_os_open('/bin/lib-python/3/linecache.py', 0, 438) [sandlib:vpath] '/bin/lib-python/3/linecache.py' => [sandlib:result] 5 [sandlib:call] ll_os.ll_os_read(5, 8192) [sandlib:result] '"""Cache lines from...lines\n' [sandlib:call] ll_os.ll_os_read(5, 8192) [sandlib:result] '' [sandlib:call] ll_os.ll_os_read(5, 8192) [sandlib:result] '' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/tokenize') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/tokenize.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/tokenize') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/tokenize' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/tokenize.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/tokenize.py' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/tokenize') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/tokenize' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/tokenize.py') [sandlib:vpath] '/bin/lib-python/3/tokenize.py' => [sandlib:result] posix.stat_result(st...ctime=0) [sandlib:call] ll_os.ll_os_open('/bin/lib-python/3/tokenize.py', 0, 438) [sandlib:vpath] '/bin/lib-python/3/tokenize.py' => [sandlib:result] 6 [sandlib:call] ll_os.ll_os_read(6, 8192) [sandlib:result] '"""Tokenization hel...e the b' [sandlib:call] ll_os.ll_os_read(6, 8192) [sandlib:result] 'ack to the input\n ...not lin' [sandlib:call] ll_os.ll_os_read(6, 8192) [sandlib:result] 'e:\n ...(tok)\n' [sandlib:call] ll_os.ll_os_read(6, 8192) [sandlib:result] '' [sandlib:call] ll_os.ll_os_read(6, 8192) [sandlib:result] '' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/re') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/re.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/re') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/re' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/re.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/re.py' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/re') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/re' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/re.py') [sandlib:vpath] '/bin/lib-python/3/re.py' => [sandlib:result] posix.stat_result(st...ctime=0) [sandlib:call] ll_os.ll_os_open('/bin/lib-python/3/re.py', 0, 438) [sandlib:vpath] '/bin/lib-python/3/re.py' => [sandlib:result] 7 [sandlib:call] ll_os.ll_os_read(7, 8192) [sandlib:result] '#\n# Secret Labs\' ...a repla' [sandlib:call] ll_os.ll_os_read(7, 8192) [sandlib:result] 'cement string to be...g[i:]\n' [sandlib:call] ll_os.ll_os_read(7, 8192) [sandlib:result] '' [sandlib:call] ll_os.ll_os_read(7, 8192) [sandlib:result] '' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/sre_compile') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/sre_compile.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/sre_compile') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/sre_compile' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/sre_compile.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/sre_compile.py' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/sre_compile') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/sre_compile' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/sre_compile.py') [sandlib:vpath] '/bin/lib-python/3/sre_compile.py' => [sandlib:result] posix.stat_result(st...ctime=0) [sandlib:call] ll_os.ll_os_open('/bin/lib-python/3/sre_compile.py', 0, 438) [sandlib:vpath] '/bin/lib-python/3/sre_compile.py' => [sandlib:result] 8 [sandlib:call] ll_os.ll_os_read(8, 8192) [sandlib:result] '#\n# Secret Labs\' ...turn ou' [sandlib:call] ll_os.ll_os_read(8, 8192) [sandlib:result] 't\n else:\n ... )\n' [sandlib:call] ll_os.ll_os_read(8, 8192) [sandlib:result] '' [sandlib:call] ll_os.ll_os_read(8, 8192) [sandlib:result] '' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/sre_parse') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/sre_parse.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/sre_parse') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/sre_parse' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/sre_parse.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/sre_parse.py' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/sre_parse') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/sre_parse' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/sre_parse.py') [sandlib:vpath] '/bin/lib-python/3/sre_parse.py' => [sandlib:result] posix.stat_result(st...ctime=0) [sandlib:call] ll_os.ll_os_open('/bin/lib-python/3/sre_parse.py', 0, 438) [sandlib:vpath] '/bin/lib-python/3/sre_parse.py' => [sandlib:result] 9 [sandlib:call] ll_os.ll_os_read(9, 8192) [sandlib:result] '#\n# Secret Labs\' ...ression' [sandlib:call] ll_os.ll_os_read(9, 8192) [sandlib:result] '\n code = CATEGO... ' [sandlib:call] ll_os.ll_os_read(9, 8192) [sandlib:result] 'subpatternappend((L...p[-1][0' [sandlib:call] ll_os.ll_os_read(9, 8192) [sandlib:result] '] is LITERAL:\n ...rals)\n' [sandlib:call] ll_os.ll_os_read(9, 8192) [sandlib:result] '' [sandlib:call] ll_os.ll_os_read(9, 8192) [sandlib:result] '' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/sre_constants') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/sre_constants.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/sre_constants') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/sre_constants' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/sre_constants.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/sre_constants.py' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/sre_constants') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/sre_constants' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/sre_constants.py') [sandlib:vpath] '/bin/lib-python/3/sre_constants.py' => [sandlib:result] posix.stat_result(st...ctime=0) [sandlib:call] ll_os.ll_os_open('/bin/lib-python/3/sre_constants.py', 0, 438) [sandlib:vpath] '/bin/lib-python/3/sre_constants.py' => [sandlib:result] 10 [sandlib:call] ll_os.ll_os_read(10, 8192) [sandlib:result] '#\n# Secret Labs\' ...one")\n' [sandlib:call] ll_os.ll_os_read(10, 8192) [sandlib:result] '' [sandlib:call] ll_os.ll_os_read(10, 8192) [sandlib:result] '' [sandlib:call] ll_os.ll_os_close(10) [sandlib:result] None [sandlib:call] ll_os.ll_os_close(9) [sandlib:result] None [sandlib:call] ll_os.ll_os_close(8) [sandlib:result] None [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/functools') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/functools.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/functools') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/functools' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/functools.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/functools.py' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/functools') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/functools' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/functools.py') [sandlib:vpath] '/bin/lib-python/3/functools.py' => [sandlib:result] posix.stat_result(st...ctime=0) [sandlib:call] ll_os.ll_os_open('/bin/lib-python/3/functools.py', 0, 438) [sandlib:vpath] '/bin/lib-python/3/functools.py' => [sandlib:result] 8 [sandlib:call] ll_os.ll_os_read(8, 8192) [sandlib:result] '"""functools.py - T...():\n ' [sandlib:call] ll_os.ll_os_read(8, 8192) [sandlib:result] ' """Clear ...ction\n' [sandlib:call] ll_os.ll_os_read(8, 8192) [sandlib:result] '' [sandlib:call] ll_os.ll_os_read(8, 8192) [sandlib:result] '' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/_functools') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/_functools.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/_functools') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/_functools' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/_functools.py') [sandlib:vpath] '/bin/lib_pypy/_functools.py' => [sandlib:result] posix.stat_result(st...ctime=0) [sandlib:call] ll_os.ll_os_open('/bin/lib_pypy/_functools.py', 0, 438) [sandlib:vpath] '/bin/lib_pypy/_functools.py' => [sandlib:result] 9 [sandlib:call] ll_os.ll_os_read(9, 8192) [sandlib:result] '""" Supplies the in...te(d)\n' [sandlib:call] ll_os.ll_os_read(9, 8192) [sandlib:result] '' [sandlib:call] ll_os.ll_os_read(9, 8192) [sandlib:result] '' [sandlib:call] ll_os.ll_os_close(9) [sandlib:result] None [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/collections') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/collections.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/collections') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/collections' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/collections.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/collections.py' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/collections') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/collections' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/collections.py') [sandlib:vpath] '/bin/lib-python/3/collections.py' => [sandlib:result] posix.stat_result(st...ctime=0) [sandlib:call] ll_os.ll_os_open('/bin/lib-python/3/collections.py', 0, 438) [sandlib:vpath] '/bin/lib-python/3/collections.py' => [sandlib:result] 9 [sandlib:call] ll_os.ll_os_read(9, 8192) [sandlib:result] "__all__ = ['deque',...stance(" [sandlib:call] ll_os.ll_os_read(9, 8192) [sandlib:result] 'other, OrderedDict)...softwar' [sandlib:call] ll_os.ll_os_read(9, 8192) [sandlib:result] "e/smalltalk/manual-...f elem " [sandlib:call] ll_os.ll_os_read(9, 8192) [sandlib:result] 'not in self and cou...__(self' [sandlib:call] ll_os.ll_os_read(9, 8192) [sandlib:result] ", n):\n self... pri" [sandlib:call] ll_os.ll_os_read(9, 8192) [sandlib:result] 'nt(TestResults(*doctest.testmod()))\n' [sandlib:call] ll_os.ll_os_read(9, 8192) [sandlib:result] '' [sandlib:call] ll_os.ll_os_read(9, 8192) [sandlib:result] '' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/_collections') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/_collections.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/_collections') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/_collections' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/_collections.py') [sandlib:vpath] '/bin/lib_pypy/_collections.py' => [sandlib:result] posix.stat_result(st...ctime=0) [sandlib:call] ll_os.ll_os_open('/bin/lib_pypy/_collections.py', 0, 438) [sandlib:vpath] '/bin/lib_pypy/_collections.py' => [sandlib:result] 10 [sandlib:call] ll_os.ll_os_read(10, 8192) [sandlib:result] '"""High performance...elf.lef' [sandlib:call] ll_os.ll_os_read(10, 8192) [sandlib:result] 'tndx + 1 - n\n ...)))\n\n' [sandlib:call] ll_os.ll_os_read(10, 8192) [sandlib:result] '' [sandlib:call] ll_os.ll_os_read(10, 8192) [sandlib:result] '' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/_thread') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/_thread.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/_thread') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/_thread' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/_thread.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/_thread.py' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/_thread') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/_thread' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/_thread.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/_thread.py' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/lib-tk') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/lib-tk' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/lib-tk/_thread') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/lib-tk' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/lib-tk/_thread.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/lib-tk' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/plat-linux2') [sandlib:vpath] '/bin/lib-python/3/plat-linux2' => [sandlib:result] posix.stat_result(st...ctime=0) [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/plat-linux2/_thread') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/plat-linux2/_thread' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/plat-linux2/_thread.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/plat-linux2/_thread.py' [sandlib:call] ll_os.ll_os_close(10) [sandlib:result] None [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/keyword') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/keyword.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/keyword') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/keyword' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/keyword.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/keyword.py' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/keyword') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/keyword' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/keyword.py') [sandlib:vpath] '/bin/lib-python/3/keyword.py' => [sandlib:result] posix.stat_result(st...ctime=0) [sandlib:call] ll_os.ll_os_open('/bin/lib-python/3/keyword.py', 0, 438) [sandlib:vpath] '/bin/lib-python/3/keyword.py' => [sandlib:result] 10 [sandlib:call] ll_os.ll_os_read(10, 8192) [sandlib:result] '#! /usr/bin/env pyt...ain()\n' [sandlib:call] ll_os.ll_os_read(10, 8192) [sandlib:result] '' [sandlib:call] ll_os.ll_os_read(10, 8192) [sandlib:result] '' [sandlib:call] ll_os.ll_os_close(10) [sandlib:result] None [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/heapq') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/heapq.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/heapq') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/heapq' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/heapq.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/heapq.py' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/heapq') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/heapq' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/heapq.py') [sandlib:vpath] '/bin/lib-python/3/heapq.py' => [sandlib:result] posix.stat_result(st...ctime=0) [sandlib:call] ll_os.ll_os_open('/bin/lib-python/3/heapq.py', 0, 438) [sandlib:vpath] '/bin/lib-python/3/heapq.py' => [sandlib:result] 10 [sandlib:call] ll_os.ll_os_read(10, 8192) [sandlib:result] '"""Heap queue algor... Equiva' [sandlib:call] ll_os.ll_os_read(10, 8192) [sandlib:result] 'lent to: sorted(it...ey is n' [sandlib:call] ll_os.ll_os_read(10, 8192) [sandlib:result] 'one, use simpler de...mod()\n' [sandlib:call] ll_os.ll_os_read(10, 8192) [sandlib:result] '' [sandlib:call] ll_os.ll_os_read(10, 8192) [sandlib:result] '' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/encodings/utf_32_be') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/encodings/utf_32_be' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/encodings/utf_32_be.py') [sandlib:vpath] '/bin/lib-python/3/encodings/utf_32_be.py' => [sandlib:result] posix.stat_result(st...ctime=0) [sandlib:call] ll_os.ll_os_open('/bin/lib-python/3/encodings/utf_32_be.py', 0, 438) [sandlib:vpath] '/bin/lib-python/3/encodings/utf_32_be.py' => [sandlib:result] 11 [sandlib:call] ll_os.ll_os_read(11, 8192) [sandlib:result] '"""\nPython \'utf-3... )\n' [sandlib:call] ll_os.ll_os_read(11, 8192) [sandlib:result] '' [sandlib:call] ll_os.ll_os_read(11, 8192) [sandlib:result] '' [sandlib:call] ll_os.ll_os_close(11) [sandlib:result] None [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/bisect') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/bisect.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/bisect') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/bisect' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/bisect.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/bisect.py' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/bisect') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/bisect' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/bisect.py') [sandlib:vpath] '/bin/lib-python/3/bisect.py' => [sandlib:result] posix.stat_result(st...ctime=0) [sandlib:call] ll_os.ll_os_open('/bin/lib-python/3/bisect.py', 0, 438) [sandlib:vpath] '/bin/lib-python/3/bisect.py' => [sandlib:result] 11 [sandlib:call] ll_os.ll_os_read(11, 8192) [sandlib:result] '"""Bisection algori... pass\n' [sandlib:call] ll_os.ll_os_read(11, 8192) [sandlib:result] '' [sandlib:call] ll_os.ll_os_read(11, 8192) [sandlib:result] '' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/_bisect') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/_bisect.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/_bisect') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/_bisect' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/_bisect.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/_bisect.py' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/_bisect') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/_bisect' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/_bisect.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/_bisect.py' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/lib-tk/_bisect') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/lib-tk' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/lib-tk/_bisect.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/lib-tk' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/plat-linux2/_bisect') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/plat-linux2/_bisect' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/plat-linux2/_bisect.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/plat-linux2/_bisect.py' [sandlib:call] ll_os.ll_os_close(11) [sandlib:result] None [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/_heapq') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/_heapq.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/_heapq') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/_heapq' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/_heapq.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/_heapq.py' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/_heapq') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/_heapq' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/_heapq.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/_heapq.py' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/lib-tk/_heapq') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/lib-tk' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/lib-tk/_heapq.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/lib-tk' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/plat-linux2/_heapq') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/plat-linux2/_heapq' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/plat-linux2/_heapq.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/plat-linux2/_heapq.py' [sandlib:call] ll_os.ll_os_close(10) [sandlib:result] None [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/weakref') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/weakref.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/weakref') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/weakref' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/weakref.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/weakref.py' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/weakref') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/weakref' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/weakref.py') [sandlib:vpath] '/bin/lib-python/3/weakref.py' => [sandlib:result] posix.stat_result(st...ctime=0) [sandlib:call] ll_os.ll_os_open('/bin/lib-python/3/weakref.py', 0, 438) [sandlib:vpath] '/bin/lib-python/3/weakref.py' => [sandlib:result] 10 [sandlib:call] ll_os.ll_os_read(10, 8192) [sandlib:result] '"""Weak reference s...\n d' [sandlib:call] ll_os.ll_os_read(10, 8192) [sandlib:result] 'ef _commit_removals...args)\n' [sandlib:call] ll_os.ll_os_read(10, 8192) [sandlib:result] '' [sandlib:call] ll_os.ll_os_read(10, 8192) [sandlib:result] '' [sandlib:call] ll_os.ll_os_close(10) [sandlib:result] None [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/reprlib') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/reprlib.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/reprlib') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/reprlib' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/reprlib.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/reprlib.py' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/reprlib') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/reprlib' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/reprlib.py') [sandlib:vpath] '/bin/lib-python/3/reprlib.py' => [sandlib:result] posix.stat_result(st...ctime=0) [sandlib:call] ll_os.ll_os_open('/bin/lib-python/3/reprlib.py', 0, 438) [sandlib:vpath] '/bin/lib-python/3/reprlib.py' => [sandlib:result] 10 [sandlib:call] ll_os.ll_os_read(10, 8192) [sandlib:result] '"""Redo the builtin....repr\n' [sandlib:call] ll_os.ll_os_read(10, 8192) [sandlib:result] '' [sandlib:call] ll_os.ll_os_read(10, 8192) [sandlib:result] '' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/_thread') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/_thread.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/_thread') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/_thread' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/_thread.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/_thread.py' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/_thread') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/_thread' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/_thread.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/_thread.py' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/lib-tk/_thread') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/lib-tk' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/lib-tk/_thread.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/lib-tk' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/plat-linux2/_thread') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/plat-linux2/_thread' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/plat-linux2/_thread.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/plat-linux2/_thread.py' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/_dummy_thread') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/_dummy_thread.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/_dummy_thread') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/_dummy_thread' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/_dummy_thread.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/_dummy_thread.py' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/_dummy_thread') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/_dummy_thread' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/_dummy_thread.py') [sandlib:vpath] '/bin/lib-python/3/_dummy_thread.py' => [sandlib:result] posix.stat_result(st...ctime=0) [sandlib:call] ll_os.ll_os_open('/bin/lib-python/3/_dummy_thread.py', 0, 438) [sandlib:vpath] '/bin/lib-python/3/_dummy_thread.py' => [sandlib:result] 11 [sandlib:call] ll_os.ll_os_read(11, 8192) [sandlib:result] '"""Drop-in replacem... True\n' [sandlib:call] ll_os.ll_os_read(11, 8192) [sandlib:result] '' [sandlib:call] ll_os.ll_os_read(11, 8192) [sandlib:result] '' [sandlib:call] ll_os.ll_os_close(11) [sandlib:result] None [sandlib:call] ll_os.ll_os_close(10) [sandlib:result] None [sandlib:call] ll_os.ll_os_close(9) [sandlib:result] None [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/_thread') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/_thread.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/_thread') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/_thread' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/_thread.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/_thread.py' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/_thread') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/_thread' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/_thread.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/_thread.py' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/lib-tk/_thread') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/lib-tk' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/lib-tk/_thread.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/lib-tk' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/plat-linux2/_thread') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/plat-linux2/_thread' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/plat-linux2/_thread.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/plat-linux2/_thread.py' [sandlib:call] ll_os.ll_os_close(8) [sandlib:result] None [sandlib:call] ll_os.ll_os_close(7) [sandlib:result] None [sandlib:call] ll_os.ll_os_close(6) [sandlib:result] None [sandlib:call] ll_os.ll_os_close(5) [sandlib:result] None [sandlib:call] ll_os.ll_os_close(4) [sandlib:result] None [sandlib:call] ll_os.ll_os_geteuid() [sandlib:result] 1000 [sandlib:call] ll_os.ll_os_getuid() [sandlib:result] 1000 [sandlib:call] ll_os.ll_os_getegid() [sandlib:result] 1000 [sandlib:call] ll_os.ll_os_getgid() [sandlib:result] 1000 [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/sysconfig') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/sysconfig.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/sysconfig') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/sysconfig' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/sysconfig.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/sysconfig.py' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/sysconfig') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/sysconfig' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/sysconfig.py') [sandlib:vpath] '/bin/lib-python/3/sysconfig.py' => [sandlib:result] posix.stat_result(st...ctime=0) [sandlib:call] ll_os.ll_os_open('/bin/lib-python/3/sysconfig.py', 0, 438) [sandlib:vpath] '/bin/lib-python/3/sysconfig.py' => [sandlib:result] 4 [sandlib:call] ll_os.ll_os_read(4, 8192) [sandlib:result] '"""Provide access t... t' [sandlib:call] ll_os.ll_os_read(4, 8192) [sandlib:result] 'mpv = v.replace(\'$... ' [sandlib:call] ll_os.ll_os_read(4, 8192) [sandlib:result] ' if sys.platform ==...ve mach' [sandlib:call] ll_os.ll_os_read(4, 8192) [sandlib:result] 'ine-type\n ...ain()\n' [sandlib:call] ll_os.ll_os_read(4, 8192) [sandlib:result] '' [sandlib:call] ll_os.ll_os_read(4, 8192) [sandlib:result] '' [sandlib:call] ll_os.ll_os_lstat('/bin') [sandlib:vpath] '/bin' => [sandlib:result] posix.stat_result(st...ctime=0) [sandlib:call] ll_os.ll_os_lstat('/bin/pypy-c') [sandlib:vpath] '/bin/pypy-c' => [sandlib:result] posix.stat_result(st...ctime=0) [sandlib:call] ll_os.ll_os_stat('/bin/Modules/Setup.dist') [sandlib:exception] OSError: [Errno 2] Modules [sandlib:call] ll_os.ll_os_strerror(2) [sandlib:result] 'No such file or directory' [sandlib:call] ll_os.ll_os_stat('/bin/Modules/Setup.local') [sandlib:exception] OSError: [Errno 2] Modules [sandlib:call] ll_os.ll_os_strerror(2) [sandlib:result] 'No such file or directory' [sandlib:call] ll_os.ll_os_close(4) [sandlib:result] None [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/pwd') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/pwd.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/pwd') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/pwd' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/pwd.py') [sandlib:vpath] '/bin/lib_pypy/pwd.py' => [sandlib:result] posix.stat_result(st...ctime=0) [sandlib:call] ll_os.ll_os_open('/bin/lib_pypy/pwd.py', 0, 438) [sandlib:vpath] '/bin/lib_pypy/pwd.py' => [sandlib:result] 4 [sandlib:call] ll_os.ll_os_read(4, 8192) [sandlib:result] '# ctypes implementa...pw)\n\n' [sandlib:call] ll_os.ll_os_read(4, 8192) [sandlib:result] '' [sandlib:call] ll_os.ll_os_read(4, 8192) [sandlib:result] '' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/ctypes_support') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/ctypes_support.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/ctypes_support') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/ctypes_support' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/ctypes_support.py') [sandlib:vpath] '/bin/lib_pypy/ctypes_support.py' => [sandlib:result] posix.stat_result(st...ctime=0) [sandlib:call] ll_os.ll_os_open('/bin/lib_pypy/ctypes_support.py', 0, 438) [sandlib:vpath] '/bin/lib_pypy/ctypes_support.py' => [sandlib:result] 5 [sandlib:call] ll_os.ll_os_read(5, 8192) [sandlib:result] '\n""" This file pro...e\n\n\n' [sandlib:call] ll_os.ll_os_read(5, 8192) [sandlib:result] '' [sandlib:call] ll_os.ll_os_read(5, 8192) [sandlib:result] '' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/ctypes') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/ctypes.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/ctypes') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/ctypes' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/ctypes.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/ctypes.py' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/ctypes') [sandlib:vpath] '/bin/lib-python/3/ctypes' => [sandlib:result] posix.stat_result(st...ctime=0) [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/ctypes/__init__.py') [sandlib:vpath] '/bin/lib-python/3/ctypes/__init__.py' => [sandlib:result] posix.stat_result(st...ctime=0) [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/ctypes/__init__') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/ctypes/__init__' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/ctypes/__init__.py') [sandlib:vpath] '/bin/lib-python/3/ctypes/__init__.py' => [sandlib:result] posix.stat_result(st...ctime=0) [sandlib:call] ll_os.ll_os_open('/bin/lib-python/3/ctypes/__init__.py', 0, 438) [sandlib:vpath] '/bin/lib-python/3/ctypes/__init__.py' => [sandlib:result] 6 [sandlib:call] ll_os.ll_os_read(6, 8192) [sandlib:result] '"""create and manip...clear()' [sandlib:call] ll_os.ll_os_read(6, 8192) [sandlib:result] '\n _c_functype_c... ' [sandlib:call] ll_os.ll_os_read(6, 8192) [sandlib:result] ' return ccom.DllGe...che()\n' [sandlib:call] ll_os.ll_os_read(6, 8192) [sandlib:result] '' [sandlib:call] ll_os.ll_os_read(6, 8192) [sandlib:result] '' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/_ffi') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/_ffi.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/_ffi') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/_ffi' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/_ffi.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/_ffi.py' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/_ffi') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/_ffi' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/_ffi.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/_ffi.py' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/lib-tk/_ffi') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/lib-tk' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/lib-tk/_ffi.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/lib-tk' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/plat-linux2/_ffi') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/plat-linux2/_ffi' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/plat-linux2/_ffi.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/plat-linux2/_ffi.py' [sandlib:call] ll_os.ll_os_close(6) [sandlib:result] None [sandlib:call] ll_os.ll_os_close(5) [sandlib:result] None [sandlib:call] ll_os.ll_os_close(4) [sandlib:result] None [sandlib:call] ll_os.ll_os_close(3) [sandlib:result] None [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/signal') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/__extensions__/signal.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/__extensions__' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/signal') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/signal' [sandlib:call] ll_os.ll_os_stat('/bin/lib_pypy/signal.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib_pypy/signal.py' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/signal') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/signal' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/signal.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/signal.py' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/lib-tk/signal') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/lib-tk' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/lib-tk/signal.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/lib-tk' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/plat-linux2/signal') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/plat-linux2/signal' [sandlib:call] ll_os.ll_os_stat('/bin/lib-python/3/plat-linux2/signal.py') [sandlib:exception] OSError: [Errno 2] No such file or directory: '[...]/pypy3-2.1-beta1-src/lib-python/3/plat-linux2/signal.py' debug: OperationError: debug: operror-type: AttributeError debug: operror-value: 'NoneType' object has no attribute 'isatty' [Subprocess exit code: 1] From tracker at bugs.pypy.org Fri Apr 25 23:20:14 2014 From: tracker at bugs.pypy.org (Philip Jenvey) Date: Fri, 25 Apr 2014 21:20:14 +0000 Subject: [pypy-issue] [issue1541] py3k: Re-enable rpython int sized app-level int In-Reply-To: <1374013849.16.0.768623384444.issue1541@bugs.pypy.org> Message-ID: <1398460814.67.0.855743000416.issue1541@bugs.pypy.org> Philip Jenvey added the comment: The follow up issue, the regression of the small range example, should be solved now that issue1471 is closed (092f39d9ab1c). I tried this example out about a week ago on an older version of the py3k-fix- strategies branch, and the performance was greatly improved. IIRC it was very close to default's. That means py3k's range + the JIT (with working strategies) isn't too much of a problem here ---------- status: chatting -> resolved ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Fri Apr 25 23:20:20 2014 From: tracker at bugs.pypy.org (Philip Jenvey) Date: Fri, 25 Apr 2014 21:20:20 +0000 Subject: [pypy-issue] [issue1471] py3k: Re-enable strategies In-Reply-To: <1367354487.89.0.178259207003.issue1471@bugs.pypy.org> Message-ID: <1398460820.88.0.155073613783.issue1471@bugs.pypy.org> Philip Jenvey added the comment: fixed in 092f39d9ab1c ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Sat Apr 26 02:11:07 2014 From: tracker at bugs.pypy.org (Wim Lavrijsen) Date: Sat, 26 Apr 2014 00:11:07 +0000 Subject: [pypy-issue] [issue1676] cppyy: Incorrect __class__ for Python subclasses of C++ classes In-Reply-To: <1389988478.85.0.648989574508.issue1676@bugs.pypy.org> Message-ID: <1398471067.83.0.935328634372.issue1676@bugs.pypy.org> Wim Lavrijsen added the comment: Hi, fixed now (in time for 2.3 :) ). Thanks for reporting (it took a while as this bug wasn't assigned so far). Cheers, Wim ---------- status: unread -> resolved ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Sat Apr 26 20:48:45 2014 From: tracker at bugs.pypy.org (mattip) Date: Sat, 26 Apr 2014 18:48:45 +0000 Subject: [pypy-issue] [issue1416] Fix ARM hard floats In-Reply-To: <1362736970.03.0.69077399834.issue1416@bugs.pypy.org> Message-ID: <1398538125.55.0.00869018821501.issue1416@bugs.pypy.org> mattip added the comment: is this the issue about aligned float/double that was fixed, or another "hard float" problem? If another, is there a failing test we should pass? ---------- nosy: +mattip status: unread -> chatting ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Sat Apr 26 20:59:12 2014 From: tracker at bugs.pypy.org (Alex Gaynor) Date: Sat, 26 Apr 2014 18:59:12 +0000 Subject: [pypy-issue] [issue1743] greenlet does not save/restore sys.exc_info In-Reply-To: <1398440724.06.0.629470188574.issue1743@bugs.pypy.org> Message-ID: <1398538752.56.0.510975015856.issue1743@bugs.pypy.org> Alex Gaynor added the comment: I've pushed a failign test for this, I'd like to make it a blocker for 2.3 ---------- nosy: +agaynor status: unread -> chatting ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Sat Apr 26 21:05:40 2014 From: tracker at bugs.pypy.org (mattip) Date: Sat, 26 Apr 2014 19:05:40 +0000 Subject: [pypy-issue] [issue1743] greenlet does not save/restore sys.exc_info In-Reply-To: <1398440724.06.0.629470188574.issue1743@bugs.pypy.org> Message-ID: <1398539140.5.0.968950584581.issue1743@bugs.pypy.org> mattip added the comment: test's name is test_exc_info_save_restore2 in pypy/module/test_lib_pypy/test_greenlet.py ---------- nosy: +mattip priority: bug -> critical ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Sat Apr 26 21:08:43 2014 From: tracker at bugs.pypy.org (mattip) Date: Sat, 26 Apr 2014 19:08:43 +0000 Subject: [pypy-issue] [issue1530] cx_Oracle 5.1.x doesn't work with pypy In-Reply-To: <1373115221.33.0.813421642246.issue1530@bugs.pypy.org> Message-ID: <1398539323.33.0.56670430916.issue1530@bugs.pypy.org> mattip added the comment: Can we either make progress with this or mark it non-critical for the 2.3 release? ---------- nosy: +mattip ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Sat Apr 26 21:12:09 2014 From: tracker at bugs.pypy.org (mattip) Date: Sat, 26 Apr 2014 19:12:09 +0000 Subject: [pypy-issue] [issue1496] pypy 2.0.x crash (not reproducible) In-Reply-To: <1369471460.16.0.652344394226.issue1496@bugs.pypy.org> Message-ID: <1398539529.01.0.524184451841.issue1496@bugs.pypy.org> mattip added the comment: tonypypy, can you reproduce with a nightly? If so, we need more info to make progress. I am changing the name to "...(not reproducible)" until you provide more info. ---------- nosy: +mattip title: pypy 2.0.x crash (stack trace included) -> pypy 2.0.x crash (not reproducible) ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Sat Apr 26 21:46:34 2014 From: tracker at bugs.pypy.org (mattip) Date: Sat, 26 Apr 2014 19:46:34 +0000 Subject: [pypy-issue] [issue1564] sqlite3 can't import w/ OSX pypy-2.1-beta2 In-Reply-To: <1375043247.36.0.985684552114.issue1564@bugs.pypy.org> Message-ID: <1398541594.22.0.85661022637.issue1564@bugs.pypy.org> mattip added the comment: Could setting the LIBRARY_PATH environment variable before building the sqlite3 cffi interface help? ---------- nosy: +mattip ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Sat Apr 26 21:59:41 2014 From: tracker at bugs.pypy.org (mattip) Date: Sat, 26 Apr 2014 19:59:41 +0000 Subject: [pypy-issue] [issue1445] Major regression since 2.0 beta In-Reply-To: <1365539188.91.0.246145124206.issue1445@bugs.pypy.org> Message-ID: <1398542381.86.0.683138222597.issue1445@bugs.pypy.org> mattip added the comment: I have a ubuntu virtual machine with 2GB RAM and no swap. I cannot reproduce the report, even with a stock pypy 2.2.1: $ python -c "import sys;print sys.version" 2.7.3 (87aa9de10f9ca71da9ab4a3d53e0ba176b67d086, Nov 28 2013, 08:53:41) [PyPy 2.2.1 with GCC 4.8.2] $ git clone https://github.com/django/django.git $ cd django $ python setup.py install $ tests/runtests.py ... Ran 6849 tests in 570.670s FAILED (failures=2, errors=5, skipped=546, expected failures=8) None of the failing tests (nor errors) are out-of-memory errors ---------- nosy: +mattip ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Sun Apr 27 00:01:44 2014 From: tracker at bugs.pypy.org (mattip) Date: Sat, 26 Apr 2014 22:01:44 +0000 Subject: [pypy-issue] [issue1696] Can not install pip with get-pip.py In-Reply-To: <1393856361.2.0.130806515172.issue1696@bugs.pypy.org> Message-ID: <1398549704.99.0.894468619438.issue1696@bugs.pypy.org> mattip added the comment: The source of the distlib failure is in zipimport caching file paths with unix '/' path.sep instead of windows '\\' pathsep. This makes the ZipResourceFinder unhappy. I expanded the test_zip_directory_cache test to check, it currently fails on windows. ---------- status: chatting -> in-progress ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Sun Apr 27 10:11:46 2014 From: tracker at bugs.pypy.org (mattip) Date: Sun, 27 Apr 2014 08:11:46 +0000 Subject: [pypy-issue] [issue1629] leak In-Reply-To: <1383605867.01.0.694603967423.issue1629@bugs.pypy.org> Message-ID: <1398586306.41.0.861189804811.issue1629@bugs.pypy.org> mattip added the comment: glyph can you reproduce this or can we close the issue as "fixed"? ---------- nosy: +mattip ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Sun Apr 27 10:41:32 2014 From: tracker at bugs.pypy.org (Armin Rigo) Date: Sun, 27 Apr 2014 08:41:32 +0000 Subject: [pypy-issue] [issue1743] greenlet does not save/restore sys.exc_info In-Reply-To: <1398440724.06.0.629470188574.issue1743@bugs.pypy.org> Message-ID: <1398588092.79.0.618110903192.issue1743@bugs.pypy.org> Armin Rigo added the comment: Fixed in d083e472a6ab. ---------- nosy: +arigo status: chatting -> resolved ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Sun Apr 27 10:45:39 2014 From: tracker at bugs.pypy.org (Armin Rigo) Date: Sun, 27 Apr 2014 08:45:39 +0000 Subject: [pypy-issue] [issue1496] pypy 2.0.x crash (not reproducible) In-Reply-To: <1369471460.16.0.652344394226.issue1496@bugs.pypy.org> Message-ID: <1398588339.76.0.272672215069.issue1496@bugs.pypy.org> Armin Rigo added the comment: Marked as invalid unless reopened with more information. ---------- status: chatting -> invalid ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Sun Apr 27 10:58:35 2014 From: tracker at bugs.pypy.org (Armin Rigo) Date: Sun, 27 Apr 2014 08:58:35 +0000 Subject: [pypy-issue] [issue1744] py3k: pypy_interact.py exits with an AttributeError when trying to use the sandbox feature In-Reply-To: <1398451121.66.0.501624072279.issue1744@bugs.pypy.org> Message-ID: <1398589115.09.0.435143129931.issue1744@bugs.pypy.org> Armin Rigo added the comment: I added a warning that the sandbox interpreter is only tested with PyPy2. You're welcome to try to use it with PyPy3, but you're bound to get small bugs like the one reported here. We'd be happy to accept patches. ---------- nosy: +arigo status: unread -> chatting ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Sun Apr 27 11:03:00 2014 From: tracker at bugs.pypy.org (Armin Rigo) Date: Sun, 27 Apr 2014 09:03:00 +0000 Subject: [pypy-issue] [issue1739] file append mode In-Reply-To: <1397893496.82.0.118636748648.issue1739@bugs.pypy.org> Message-ID: <1398589380.99.0.90707190224.issue1739@bugs.pypy.org> Armin Rigo added the comment: Merged in pull request #232. Still waiting for tests. ---------- status: unread -> testing ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Sun Apr 27 19:45:38 2014 From: tracker at bugs.pypy.org (Glyph) Date: Sun, 27 Apr 2014 17:45:38 +0000 Subject: [pypy-issue] [issue1629] leak In-Reply-To: <1383605867.01.0.694603967423.issue1629@bugs.pypy.org> Message-ID: <1398620738.06.0.36543629484.issue1629@bugs.pypy.org> Glyph added the comment: I think this indicates it must have been fixed at some point :-). trac 2159 0.0 3.1 744344 512152 ? Sl Apr07 8:38 /opt/pypy-2.2- linux64/bin/pypy /opt/pypy-2.2-linux64/bin/twistd --pidfile /srv/trac/run/twistd.pid --logfile /srv/trac/log/twistd.log --rundir /srv/trac/run --python /srv/trac/config/server.tac ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Sun Apr 27 22:18:48 2014 From: tracker at bugs.pypy.org (mattip) Date: Sun, 27 Apr 2014 20:18:48 +0000 Subject: [pypy-issue] [issue1448] pytest on default does not support multi-inherited classes In-Reply-To: <1365658629.35.0.880645955713.issue1448@bugs.pypy.org> Message-ID: <1398629928.74.0.99739785613.issue1448@bugs.pypy.org> mattip added the comment: We no longer have the jvm backend. I get identical output when running python pytest.py --collectonly pypy/module as when I run the 2.5.2 version of an installed site-libraries pytest py.test --collectonly pypy/module Running collections on rpython turns up 0 tests on both versions. May I mark this invalid? If not, please provide more info. ---------- nosy: +mattip ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Sun Apr 27 23:17:28 2014 From: tracker at bugs.pypy.org (Armin Rigo) Date: Sun, 27 Apr 2014 21:17:28 +0000 Subject: [pypy-issue] [issue1448] pytest on default does not support multi-inherited classes In-Reply-To: <1365658629.35.0.880645955713.issue1448@bugs.pypy.org> Message-ID: <1398633448.67.0.109043698757.issue1448@bugs.pypy.org> Armin Rigo added the comment: The problem (in my opinion) was the tests in the jvm backend using some too-new feature of py.test. Now that we dropped the tests, the problem is resolved. ---------- nosy: +arigo status: chatting -> resolved ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Mon Apr 28 06:10:10 2014 From: tracker at bugs.pypy.org (mattip) Date: Mon, 28 Apr 2014 04:10:10 +0000 Subject: [pypy-issue] [issue1696] Can not install pip with get-pip.py In-Reply-To: <1393856361.2.0.130806515172.issue1696@bugs.pypy.org> Message-ID: <1398658210.16.0.106606566735.issue1696@bugs.pypy.org> mattip added the comment: fixed with latest nightly ---------- status: in-progress -> resolved ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Mon Apr 28 16:46:43 2014 From: tracker at bugs.pypy.org (mattip) Date: Mon, 28 Apr 2014 14:46:43 +0000 Subject: [pypy-issue] [issue1416] Fix ARM hard floats In-Reply-To: <1362736970.03.0.69077399834.issue1416@bugs.pypy.org> Message-ID: <1398696403.97.0.3754055065.issue1416@bugs.pypy.org> mattip added the comment: fixed ---------- status: chatting -> resolved ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Mon Apr 28 22:51:59 2014 From: tracker at bugs.pypy.org (Denis) Date: Mon, 28 Apr 2014 20:51:59 +0000 Subject: [pypy-issue] [issue1745] gevent's bench_sendall.py 10x slower on PyPy In-Reply-To: <1398718319.28.0.429751327293.issue1745@bugs.pypy.org> Message-ID: <1398718319.28.0.429751327293.issue1745@bugs.pypy.org> New submission from Denis : https://github.com/surfly/gevent/blob/master/greentest/bench_sendall.py To reproduce, do git clone git at github.com:surfly/gevent.git --depth 1 cd gevent python setup.py build pypy setup.py build PYTHONPATH=. python greentest/bench_sendall.py PYTHONPATH=. pypy greentest/bench_sendall.py I get the following results: + PYTHONPATH=. python greentest/bench_sendall.py 1187.68 MB/s 990.53 MB/s 1124.00 MB/s 1048.74 MB/s 1476.14 MB/s 1332.63 MB/s 1266.82 MB/s 1289.86 MB/s 1474.71 MB/s 1313.37 MB/s ~ 1230.50 MB/s + PYTHONPATH=. pypy greentest/bench_sendall.py 36.21 MB/s 104.02 MB/s 121.13 MB/s 118.86 MB/s 137.39 MB/s 136.05 MB/s 157.41 MB/s 147.06 MB/s 147.80 MB/s 152.78 MB/s ~ 105.27 MB/s denis at ubuntu2 /tmp $ python --version Python 2.7.3 denis at ubuntu2 /tmp $ pypy --version Python 2.7.3 (2.2.1+dfsg-1~ppa1, Nov 28 2013, 02:02:56) [PyPy 2.2.1 with GCC 4.6.3] ---------- messages: 6812 nosy: denis, pypy-issue priority: performance bug status: unread title: gevent's bench_sendall.py 10x slower on PyPy ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Tue Apr 29 04:56:28 2014 From: tracker at bugs.pypy.org (Ronan Lamy) Date: Tue, 29 Apr 2014 02:56:28 +0000 Subject: [pypy-issue] [issue1746] functions missing __closure__ attribute In-Reply-To: <1398740188.84.0.129861813199.issue1746@bugs.pypy.org> Message-ID: <1398740188.84.0.129861813199.issue1746@bugs.pypy.org> New submission from Ronan Lamy : ~/dev/pypy$ python -c "(lambda:0).__closure__" ~/dev/pypy$ pypy -c "(lambda:0).__closure__" Traceback (most recent call last): File "app_main.py", line 72, in run_toplevel File "app_main.py", line 578, in run_it File "", line 1, in AttributeError: 'function' object has no attribute '__closure__' ---------- messages: 6813 nosy: pypy-issue, rlamy priority: bug status: unread title: functions missing __closure__ attribute ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Tue Apr 29 04:58:59 2014 From: tracker at bugs.pypy.org (Alex Gaynor) Date: Tue, 29 Apr 2014 02:58:59 +0000 Subject: [pypy-issue] [issue1746] functions missing __closure__ attribute In-Reply-To: <1398740188.84.0.129861813199.issue1746@bugs.pypy.org> Message-ID: <1398740339.22.0.237867520192.issue1746@bugs.pypy.org> Alex Gaynor added the comment: added in 9913d8bb1a20 ---------- nosy: +agaynor status: unread -> resolved ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Tue Apr 29 16:36:42 2014 From: tracker at bugs.pypy.org (Stefan M.) Date: Tue, 29 Apr 2014 14:36:42 +0000 Subject: [pypy-issue] [issue1747] PyPy getting gradually slower on Richards Benchmark with every iteration In-Reply-To: <1398782202.95.0.61548974058.issue1747@bugs.pypy.org> Message-ID: <1398782202.95.0.61548974058.issue1747@bugs.pypy.org> New submission from Stefan M. : I observed reproducibly on PyPy 2.2.1 that the Richards benchmark (https://raw.githubusercontent.com/smarr/Classic- Benchmarks/2e7f912f9da1c50c4a83cd4b09a1ba105e154beb/richards.py) becomes slower with every iteration (after 3 warmup iterations). It does not seem to reach a stable state. I executed the benchmark with: `pypy richards.py 1000 0 100` (that's 1000 runs, 0 suppressed warmup runs, and 100 inner iterations of the benchmark) The OS is a Ubuntu 13.10, was all updates. ---------- messages: 6815 nosy: pypy-issue, smarr priority: bug release: 2.2 status: unread title: PyPy getting gradually slower on Richards Benchmark with every iteration ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Tue Apr 29 22:16:33 2014 From: tracker at bugs.pypy.org (kostia.lopuhin) Date: Tue, 29 Apr 2014 20:16:33 +0000 Subject: [pypy-issue] [issue1748] array.array is not an instance of collections.Iterable In-Reply-To: <1398802593.76.0.0567323112915.issue1748@bugs.pypy.org> Message-ID: <1398802593.76.0.0567323112915.issue1748@bugs.pypy.org> New submission from kostia.lopuhin : Under pypy nighly, array.array is not considered an instance of collections.Iterable - the following code works under CPython 2.7 and fails under PyPy: import array from collections import Iterable assert isinstance(array.array('i', []), Iterable) This might be a common way to check if thing is an iterable (see for example http://stackoverflow.com/a/1952655/217088) ---------- messages: 6816 nosy: kostia.lopuhin, pypy-issue priority: bug release: 2.3 status: unread title: array.array is not an instance of collections.Iterable ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Tue Apr 29 22:57:25 2014 From: tracker at bugs.pypy.org (mattip) Date: Tue, 29 Apr 2014 20:57:25 +0000 Subject: [pypy-issue] [issue1530] cx_Oracle 5.1.x doesn't work with pypy In-Reply-To: <1373115221.33.0.813421642246.issue1530@bugs.pypy.org> Message-ID: <1398805045.68.0.703208194296.issue1530@bugs.pypy.org> mattip added the comment: fixed by removing the oracle module (it should be a cffi wrapper instead) ---------- status: chatting -> resolved ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Wed Apr 30 00:13:08 2014 From: tracker at bugs.pypy.org (Philip Jenvey) Date: Tue, 29 Apr 2014 22:13:08 +0000 Subject: [pypy-issue] [issue1748] array.array is not an instance of collections.Iterable In-Reply-To: <1398802593.76.0.0567323112915.issue1748@bugs.pypy.org> Message-ID: <1398809588.13.0.986469651271.issue1748@bugs.pypy.org> Philip Jenvey added the comment: This should be fixed in a199610f2d6a. The problem was due to a lack of an exposed __iter__ method on the array type ---------- status: unread -> resolved ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Wed Apr 30 00:17:19 2014 From: tracker at bugs.pypy.org (Brian Kearns) Date: Tue, 29 Apr 2014 22:17:19 +0000 Subject: [pypy-issue] [issue1749] merge of small-unroll-improvements triggered crash with AssertionError in jitted numpy code In-Reply-To: <1398809839.09.0.996344127844.issue1749@bugs.pypy.org> Message-ID: <1398809839.09.0.996344127844.issue1749@bugs.pypy.org> New submission from Brian Kearns : following crashes on linux64 after merge of small-unroll-improvements, worked before: import _numpypy.multiarray as np a = np.array([[1, 2, 3], [4, 5, 6], [7, 8, 9]], 'float32') for i in range(1000): a.dot(a) ---------- messages: 6819 nosy: bdk, pypy-issue priority: critical status: unread title: merge of small-unroll-improvements triggered crash with AssertionError in jitted numpy code ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Wed Apr 30 00:17:51 2014 From: tracker at bugs.pypy.org (Brian Kearns) Date: Tue, 29 Apr 2014 22:17:51 +0000 Subject: [pypy-issue] [issue1749] merge of small-unroll-improvements triggered crash with AssertionError in jitted numpy code In-Reply-To: <1398809839.09.0.996344127844.issue1749@bugs.pypy.org> Message-ID: <1398809871.57.0.426098953736.issue1749@bugs.pypy.org> Brian Kearns added the comment: $ ./pypy/goal/pypy-c numpy.py RPython traceback: File "rpython_jit_metainterp_pyjitpl.c", line 20435, in MIFrame_run_one_step File "rpython_jit_metainterp_pyjitpl.c", line 34135, in handler_getfield_gc_i_pure File "rpython_jit_metainterp_pyjitpl_2.c", line 24721, in _opimpl_getfield_gc_any_pureornot___81 Fatal RPython error: AssertionError Aborted ---------- status: unread -> chatting ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Wed Apr 30 08:26:10 2014 From: tracker at bugs.pypy.org (kostia.lopuhin) Date: Wed, 30 Apr 2014 06:26:10 +0000 Subject: [pypy-issue] [issue1748] array.array is not an instance of collections.Iterable In-Reply-To: <1398802593.76.0.0567323112915.issue1748@bugs.pypy.org> Message-ID: <1398839170.17.0.385981274893.issue1748@bugs.pypy.org> kostia.lopuhin added the comment: Thank you! ---------- status: resolved -> chatting ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Wed Apr 30 08:26:50 2014 From: tracker at bugs.pypy.org (Alex Gaynor) Date: Wed, 30 Apr 2014 06:26:50 +0000 Subject: [pypy-issue] [issue1748] array.array is not an instance of collections.Iterable In-Reply-To: <1398802593.76.0.0567323112915.issue1748@bugs.pypy.org> Message-ID: <1398839210.74.0.265660672139.issue1748@bugs.pypy.org> Alex Gaynor added the comment: re-marking this as resolved :-) ---------- nosy: +agaynor status: chatting -> resolved ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Wed Apr 30 15:01:21 2014 From: tracker at bugs.pypy.org (Armin Rigo) Date: Wed, 30 Apr 2014 13:01:21 +0000 Subject: [pypy-issue] [issue1749] merge of small-unroll-improvements triggered crash with AssertionError in jitted numpy code In-Reply-To: <1398809839.09.0.996344127844.issue1749@bugs.pypy.org> Message-ID: <1398862881.8.0.654833935645.issue1749@bugs.pypy.org> Armin Rigo added the comment: Should be fixed in 10ad80d9a210. The reason was that a former CAST_FLOAT_TO_SINGLEFLOAT left garbage in the upper 4 bytes of the singlefloat word, and then this garbage was different from the null-padded value we get out of reading the field, in _opimpl_getfield_gc_any_pureornot(). ---------- nosy: +arigo ________________________________________ PyPy bug tracker ________________________________________ From tracker at bugs.pypy.org Wed Apr 30 23:16:38 2014 From: tracker at bugs.pypy.org (Armin Rigo) Date: Wed, 30 Apr 2014 21:16:38 +0000 Subject: [pypy-issue] [issue1750] intern() -> immortal In-Reply-To: <1398892598.44.0.248451401489.issue1750@bugs.pypy.org> Message-ID: <1398892598.44.0.248451401489.issue1750@bugs.pypy.org> New submission from Armin Rigo : In CPython, intern() returns strings that are unique among all co-existing equal strings, but not immortal. In PyPy they are immortal. This should be fixed at some point. Maybe it's as simple as using a WeakValueDictionary for space.interned_strings? ---------- messages: 6824 nosy: arigo, pypy-issue priority: bug status: unread title: intern() -> immortal ________________________________________ PyPy bug tracker ________________________________________