[pypy-issue] [issue1696] Can not install pip on Windows

2014-03-06 Thread Armin Rigo
Armin Rigo added the comment: The same bug occurs on Linux. -- nosy: +arigo PyPy bug tracker ___ pypy-issue mailing list pypy

[pypy-issue] [issue1653] performance regressions in benchmarks

2014-03-06 Thread Armin Rigo
Armin Rigo added the comment: mattip: can you also give a similar log for trunk? PyPy bug tracker ___ pypy-issue mailing list pypy-iss

[pypy-issue] [issue1680] ast.NodeTransformer throws AttributeError in pypy only

2014-03-06 Thread dmlockhart
dmlockhart added the comment: A temporary work around is to modify the Python ast library to set attributes to None, instead of deleting them. In lib-python/2.7/ast.py: 308 #delattr(node, field) 309 setattr(node, field, None) I'm currently working on

[pypy-issue] [issue1653] performance regressions in benchmarks

2014-03-06 Thread mattip
mattip added the comment: here is the results of using PYPYLOG=jit-summary:logfile pypy go.py -n 5 and agregating the logs over 10 seperate runs of the command Note that before the jit-counter branch, the accumulated jit statistics are very consistent, and after they not only vary widely but

[pypy-issue] [issue1699] 'module' object has no attribute 'correlate'

2014-03-06 Thread lesshaste
New submission from lesshaste : When trying to run this simple (if slightly dumb) script using Thu Mar 6 nightly I get AttributeError: 'module' object has no attribute 'correlate' -- files: detectkbit.py messages: 6567 nosy: lesshaste, pypy-issue priority: feature release: ??? status:

[pypy-issue] [issue1698] cffi.FFI.cdef fails when source string contains $ symbols

2014-03-06 Thread Armin Rigo
Armin Rigo added the comment: Updated to pycparser 2.10. You can do it manually too by copying the files pycparser-2.10/pycparser/* to lib_pypy/cffi/_pycparser/. -- status: chatting -> resolved PyPy bug tracker

[pypy-issue] [issue1698] cffi.FFI.cdef fails when source string contains $ symbols

2014-03-06 Thread Armin Rigo
Armin Rigo added the comment: Ok, sorry. I didn't know that you can use the $ character freely in identifiers. :-/ As a temporary workaround, just update lib_pypy/cffi/_pycparser from a more recent version of pycparser. PyPy bug tracker

[pypy-issue] [issue1698] cffi.FFI.cdef fails when source string contains $ symbols

2014-03-06 Thread Armin Rigo
Armin Rigo added the comment: It seems to me that the $ character is illegal in C. I don't understand the issue. -- nosy: +arigo status: unread -> chatting PyPy bug tracker ___