Re: [pypy-dev] Can't import pyc file

2011-05-10 Thread Vincent Legoll
articular reason this is done this way (performance maybe) ? -- Vincent Legoll ___ pypy-dev mailing list pypy-dev@python.org http://mail.python.org/mailman/listinfo/pypy-dev

Re: [pypy-dev] pypy1.6 slow on string-heavy ops

2011-08-18 Thread Vincent Legoll
7;.join(dna) chrom = l.strip().replace('>', '') dna = [] else: dna.append(l.rstrip()) if len(dna) > 0: chroms[chrom] = ''.join(dna) -- Vincent Legoll ___ pypy-dev mailing list pypy-dev@python.org http://mail.python.org/mailman/listinfo/pypy-dev

Re: [pypy-dev] Memap in numpypy

2013-06-17 Thread Vincent Legoll
g the discussion. I personally welcome all those detailed explanations about how to do something inside pypy, because I've tried myself and it was hard to understand the big picture and also hard to get all the little details that escaped me at that time. So please continue this on-list, if deemed a

Re: [pypy-dev] Difficult in installing PyPy3 2.1 Beta 1 on ubuntu

2013-08-24 Thread Vincent Legoll
y when you say "When I run pypy in the bin directory" ? what's your PATH ? Did you cd into bin and run it as ./pypy ? -- Vincent Legoll ___ pypy-dev mailing list pypy-dev@python.org http://mail.python.org/mailman/listinfo/pypy-dev

Re: [pypy-dev] Declaring a function that returns a string in CFFI

2014-09-26 Thread Vincent Legoll
> ___ > pypy-dev mailing list > pypy-dev@python.org > https://mail.python.org/mailman/listinfo/pypy-dev > -- Vincent Legoll ___ pypy-dev mailing list pypy-dev@python.org https://mail.python.org/mailman/listinfo/pypy-dev

Re: [pypy-dev] Vectorizing numpy traces

2015-02-24 Thread Vincent Legoll
as checkpointed, and execution > would continue as if just returning from the call to the checkpointing > method, > which would be after the forced warmup prelude. > > Sorry if I am intruding. > Regards, > Bengt Richter > > > > > ___

Re: [pypy-dev] Vectorizing numpy traces

2015-03-01 Thread Vincent Legoll
box. Of course you can't > save the forked process to disk, but that seems like a small price to > pay and it works on today's PyPy. > > > A bientôt, > > Armin. > -- Vincent Legoll ___ pypy-dev mailing list pypy-dev@python.org https://mail.python.org/mailman/listinfo/pypy-dev

Re: [pypy-dev] Copy of list

2015-09-28 Thread Vincent Legoll
comment on what is the preferred way to copy a list > under PyPy? Should I try to avoid the "slice way"? > > Thanks! > _______ > pypy-dev mailing list > pypy-dev@python.org > https://mail.python.org/mailman/listinfo/pypy-dev

[pypy-dev] Branch description

2015-12-05 Thread Vincent Legoll
Hello, in 81104:6a35beb87a56, I see that the now merged branch fix-setslice-can-resize was not described properly and now the what's new document does not contain any description. Is there something to do to fix this ? What should I have done before asking the PR ? Thanks -- Vincent L

Re: [pypy-dev] Branch description

2015-12-05 Thread Vincent Legoll
thanks, i'll send a pr to describe it. Should it be comprehensive and add links to related bugs or just a single line desc? On Sat, Dec 5, 2015 at 3:31 PM, Matti Picus wrote: > On 05/12/15 12:14, Vincent Legoll wrote: >> >> Hello, >> >> in 81104:6a35beb87a56,

Re: [pypy-dev] Dead loop occurs when using python-daemon and multiprocessing together in PyPy 4.0.1

2015-12-23 Thread Vincent Legoll
__ > pypy-dev mailing list > pypy-dev@python.org > https://mail.python.org/mailman/listinfo/pypy-dev > -- Vincent Legoll ___ pypy-dev mailing list pypy-dev@python.org https://mail.python.org/mailman/listinfo/pypy-dev

Re: [pypy-dev] Dead loop occurs when using python-daemon and multiprocessing together in PyPy 4.0.1

2015-12-24 Thread Vincent Legoll
I may give this an eye if no one beats me to it, just not today, time to overeat! On Thu, Dec 24, 2015 at 7:02 AM, Armin Rigo wrote: > Hi Vincent, > > On Wed, Dec 23, 2015 at 7:05 PM, Vincent Legoll > wrote: >> Do you thought about that removed code ? >> https://bitbucke

Re: [pypy-dev] Dead loop occurs when using python-daemon and multiprocessing together in PyPy 4.0.1

2015-12-24 Thread Vincent Legoll
is enough... Frohe Weihnachten ! -- Vincent Legoll ___ pypy-dev mailing list pypy-dev@python.org https://mail.python.org/mailman/listinfo/pypy-dev

Re: [pypy-dev] Dead loop occurs when using python-daemon and multiprocessing together in PyPy 4.0.1

2015-12-26 Thread Vincent Legoll
if it would make it happen in more cases (I think) On Thu, Dec 24, 2015 at 8:28 PM, Armin Rigo wrote: > Hi Vincent, > > On Thu, Dec 24, 2015 at 5:50 PM, Vincent Legoll > wrote: >> Are we really seeing a closed and reopened fd ? >> And if that's the case it may even be

Re: [pypy-dev] Dead loop occurs when using python-daemon and multiprocessing together in PyPy 4.0.1

2015-12-27 Thread Vincent Legoll
want to cherry pick... Tell me if there's something else I can do On Sun, Dec 27, 2015 at 12:42 AM, Armin Rigo wrote: > Hi Vincent, > > On Sat, Dec 26, 2015 at 1:45 PM, Vincent Legoll > wrote: >> OK, I understand we want to have behavior as identical to cpython as

Re: [pypy-dev] numpypy unit tests

2016-01-03 Thread Vincent Legoll
Py, there is simply no other practical way to do development, >> irrespectively of whether you like it or not :-) >> >> P.P.S. Feel free to re-use my email for a FAQ and such, if something >> along these lines isn't already in there... >> >> -- >> Sincerely yours, >> Yury V. Zaytsev >> >> > > > > -- > Сергей > ___ > pypy-dev mailing list > pypy-dev@python.org > https://mail.python.org/mailman/listinfo/pypy-dev -- Vincent Legoll ___ pypy-dev mailing list pypy-dev@python.org https://mail.python.org/mailman/listinfo/pypy-dev

Re: [pypy-dev] Dead loop occurs when using python-daemon and multiprocessing together in PyPy 4.0.1

2016-01-05 Thread Vincent Legoll
too... That could certainly be a smaller gap, but still... -- Vincent Legoll ___ pypy-dev mailing list pypy-dev@python.org https://mail.python.org/mailman/listinfo/pypy-dev

Re: [pypy-dev] Copying a slice of a list in RPython

2016-05-10 Thread Vincent Legoll
Hello, I suggested having a look at rpython's list implementation rpython/rtyper/rlist.py:ll_arraycopy() which uses: rpython/rlib/rgc/rgc.py:ll_arraycopy() I hope that was a useful hint... -- Vincent Legoll ___ pypy-dev mailing list pyp

Re: [pypy-dev] Performance issues of socket.recv_into()

2016-08-09 Thread Vincent Legoll
On Tue, Aug 9, 2016 at 3:14 PM, hubo wrote: > Thanks a lot, I'm really looking forward to it! You can try a daily build, starting from tomorrow... -- Vincent Legoll ___ pypy-dev mailing list pypy-dev@python.org https://mail.python.org

Re: [pypy-dev] [PATCH] FreeBSD build fix

2018-05-18 Thread Vincent Legoll
us I m sendng this > little patch to fix FreeBSD build. Are you sure your startswith('amd64') should not be a == 'amd64' Looks like you enable more than just "freebsd-*/amd64" with this change, are the other combinat

Re: [pypy-dev] Moving PyPy to https://foss.heptapod.net

2020-02-05 Thread Vincent Legoll
t; want to keep versions? What about all ? maybe on https://archive.org if that's possible. -- Vincent Legoll ___ pypy-dev mailing list pypy-dev@python.org https://mail.python.org/mailman/listinfo/pypy-dev