[pypy-issue] [issue1402] Problem with "Getting Started with PyPy’s Python Interpreter" doc
Sean added the comment: +1 to this bug. d526111 appears to be the offending commit https://bitbucket.org/pypy/pypy/diff/pypy/doc/index.rst?diff2=d52661180965&at=default -- nosy: +sc68cal status: -> chatting PyPy bug tracker <https://bugs.pypy.org/issue1402> ___ pypy-issue mailing list pypy-issue@python.org http://mail.python.org/mailman/listinfo/pypy-issue
[pypy-issue] [issue1402] Problem with "Getting Started with PyPy’s Python Interpreter" doc
Sean added the comment: Sorry - my bug appears to be a separate issue. PyPy bug tracker <https://bugs.pypy.org/issue1402> ___ pypy-issue mailing list pypy-issue@python.org http://mail.python.org/mailman/listinfo/pypy-issue
[pypy-issue] [issue1403] Links broken on index.rst
New submission from Sean : Hi, It appears that d52611809 broke the formatting of the index.rst page, and now a significant number of links are broken in the "Documentation for the PyPy Python Interpreter" section. https://bitbucket.org/pypy/pypy/diff/pypy/doc/index.rst?diff2=d52661180965&; -- messages: 5360 nosy: pypy-issue, sc68cal priority: bug status: unread title: Links broken on index.rst PyPy bug tracker <https://bugs.pypy.org/issue1403> ___ pypy-issue mailing list pypy-issue@python.org http://mail.python.org/mailman/listinfo/pypy-issue
[pypy-issue] Issue #2913: Deletion from array.array is far slower than CPython (pypy/pypy)
New issue 2913: Deletion from array.array is far slower than CPython https://bitbucket.org/pypy/pypy/issues/2913/deletion-from-arrayarray-is-far-slower Sean: Hey, The below script completes in about 50 seconds with Python 3.7 but after 10 mins still hasn't finished running under the latest version of PyPy shipped with Fedora 29, which is as follows: ``` Python 3.5.3 (7cafdf4fca72, Aug 27 2018, 22:02:53) [PyPy 6.0.0 with GCC 8.2.1 20180801 (Red Hat 8.2.1-2)] ``` If you require any further information let me know! ``` import array import random MAX64 = 2**64 - 1 OP_QWORD_LEN = 3 OPS = 200 ars = [] for x in range(10): ars.append(array.array('Q', [MAX64 for x in range(OPS * OP_QWORD_LEN)])) for x in range(10): ar = ars[x] for _ in range(250): idx = int(len(ar) * random.random()) del ar[idx] ``` ___ pypy-issue mailing list pypy-issue@python.org https://mail.python.org/mailman/listinfo/pypy-issue
[pypy-issue] [issue1353] Weakrefs to builtin types sometimes don't work
Sean Gallagher added the comment: It first shows up in revision 58653:66ca6d9f3739 (https://bitbucket.org/pypy/pypy/commits/66ca6d9f3739c6e1a12521a7dc49de1bbb5f6d7a ) It seems to have to do with an optimization of __new__ on type objects (in pypy/objspace/std/typeobject.py) -- nosy: +SeanTater status: unread -> chatting PyPy bug tracker <https://bugs.pypy.org/issue1353> ___ pypy-issue mailing list pypy-issue@python.org http://mail.python.org/mailman/listinfo/pypy-issue
[pypy-issue] [issue1338] Epoll object cannot be closed twice
Sean Gallagher added the comment: Fixed in revision 9e389d3 -- nosy: +SeanTater status: chatting -> resolved PyPy bug tracker <https://bugs.pypy.org/issue1338> ___ pypy-issue mailing list pypy-issue@python.org http://mail.python.org/mailman/listinfo/pypy-issue
[pypy-issue] [issue1314] expat parser should read file by chunks
Sean Gallagher added the comment: Fix with test -- nosy: +SeanTater PyPy bug tracker <https://bugs.pypy.org/issue1314> ___ pypy-issue mailing list pypy-issue@python.org http://mail.python.org/mailman/listinfo/pypy-issue