Re: [pypy-dev] PyPy v5.8 released

2017-06-08 Thread Konstantin Lopuhin
Congrats on the release and thanks a lot everyone for your hard work! Just noticed that the link for PyPy 3 on http://pypy.org/download.html gives a 404, and I don't see pypy3 5.8 here https://bitbucket.org/pypy/pypy/downloads/ either. 2017-06-09 1:25 GMT+03:00 Matti Picus : > https://morepypy.bl

Re: [pypy-dev] array sorting

2016-11-26 Thread Konstantin Lopuhin
Hello Thomas, I think a library with sort on arrays can useful, for example I needed radix sort in one project and would have used a library if such library existed :) 2016-11-26 5:32 GMT+03:00 Thomas Conway : > Hi Pypies, > > I'm new to the list, so let me start by saying I totally love pypy and

Re: [pypy-dev] pypy3.3-v5.2-alpha1 release

2016-05-31 Thread Konstantin Lopuhin
Ah, sorry, my bad: I did not know about ensurepip module, checked if after reading the blog post, and it works: it installs pip and "python -m pip" works as expected (although "pip" still points to the system one). 2016-05-31 10:08 GMT+03:00 Konstantin Lopuhin : > Thank

Re: [pypy-dev] pypy3.3-v5.2-alpha1 release

2016-05-31 Thread Konstantin Lopuhin
Thanks for doing the release, this is awesome! I tried the OS X version (https://bitbucket.org/pypy/pypy/downloads/pypy3.3-v5.2.0-alpha1-osx64.tar.bz2), it runs, but it does not seem to have pip (or perhaps I did something wrong): https://bpaste.net/show/f5e10b16bc22 2016-05-31 0:18 GMT+03:00 Mat

[pypy-dev] Issue #1783: 50x higher memory usage with array.array (compared to CPython) (pypy/pypy)

2014-05-31 Thread Konstantin Lopuhin
New issue 1783: 50x higher memory usage with array.array (compared to CPython) https://bitbucket.org/pypy/pypy/issue/1783/50x-higher-memory-usage-with-arrayarray Konstantin Lopuhin: I am trying to initialize a large array with an iterator (for example, where all values are zero initially), and