Ronan Lamy pushed to branch branch/py3.6 at PyPy / pypy


Commits:
f6bfd180 by Ronan Lamy at 2020-04-27T15:27:55Z
A branch to implement socket.recvmsg_into()

--HG--
branch : py3-recvmsg_into

- - - - -
23572956 by Ronan Lamy at 2020-04-10T17:16:11Z
Code cleanup: remove redundant kwargs

--HG--
branch : py3-recvmsg_into

- - - - -
a407ebc2 by Ronan Lamy at 2020-04-24T19:18:06Z
A branch to refactor rsocket a bit, and implement RSocket.recvmsg_into() (for 
pypy3)

--HG--
branch : rpython-recvmsg_into

- - - - -
db4f2d9a by Ronan Lamy at 2020-04-10T17:16:11Z
Code cleanup: remove redundant kwargs

--HG--
branch : rpython-recvmsg_into

- - - - -
3f0ae20a by Ronan Lamy at 2020-04-10T19:25:03Z
rm unused parameter length_of_messages in recvmsg_implementation()

--HG--
branch : py3-recvmsg_into

- - - - -
d2852860 by Ronan Lamy at 2020-04-10T19:25:03Z
rm unused parameter length_of_messages in recvmsg_implementation()

--HG--
branch : rpython-recvmsg_into

- - - - -
569255f0 by Ronan Lamy at 2020-04-13T17:52:38Z
Simplify recv_implementation(): no_of_messages is just an input parameter

--HG--
branch : py3-recvmsg_into

- - - - -
05bfe279 by Ronan Lamy at 2020-04-13T17:52:38Z
Simplify recv_implementation(): no_of_messages is just an input parameter

--HG--
branch : rpython-recvmsg_into

- - - - -
675c23eb by Ronan Lamy at 2020-04-13T18:25:50Z
Replace message_size with an array of message_lengths

--HG--
branch : py3-recvmsg_into

- - - - -
66d08ac2 by Ronan Lamy at 2020-04-13T18:25:50Z
Replace message_size with an array of message_lengths

--HG--
branch : rpython-recvmsg_into

- - - - -
ae8dd75a by Ronan Lamy at 2020-04-13T19:07:19Z
Kill retinfo->messages and avoid unnecessary internal copies

--HG--
branch : py3-recvmsg_into

- - - - -
689f2e8b by Ronan Lamy at 2020-04-13T19:07:19Z
Kill retinfo->messages and avoid unnecessary internal copies

--HG--
branch : rpython-recvmsg_into

- - - - -
0c1db4d7 by Ronan Lamy at 2020-04-13T19:20:24Z
Kill unused retinfo->length_of_messages

--HG--
branch : py3-recvmsg_into

- - - - -
55af9e2a by Ronan Lamy at 2020-04-13T19:20:24Z
Kill unused retinfo->length_of_messages

--HG--
branch : rpython-recvmsg_into

- - - - -
cb2dd4e8 by Ronan Lamy at 2020-04-13T20:03:29Z
Actually allow multiple messages in recvmsg_implementation()

--HG--
branch : py3-recvmsg_into

- - - - -
893d188a by Ronan Lamy at 2020-04-13T20:03:29Z
Actually allow multiple messages in recvmsg_implementation()

--HG--
branch : rpython-recvmsg_into

- - - - -
562d29d7 by Ronan Lamy at 2020-04-15T19:29:25Z
Modernise pytest usage in test_rsocket.py

--HG--
branch : py3-recvmsg_into

- - - - -
513f0a91 by Ronan Lamy at 2020-04-15T19:29:25Z
Modernise pytest usage in test_rsocket.py

--HG--
branch : rpython-recvmsg_into

- - - - -
ffda618b by Ronan Lamy at 2020-04-17T18:53:39Z
Test all variants of recv() simultaneously

--HG--
branch : py3-recvmsg_into

- - - - -
24d8c274 by Ronan Lamy at 2020-04-17T18:53:39Z
Test all variants of recv() simultaneously

--HG--
branch : rpython-recvmsg_into

- - - - -
3041d93d by Ronan Lamy at 2020-04-17T22:14:33Z
Simplify rpython recvinto() and deal with non-raw buffers in interp_socket.py

The 'rwbuffer' argument must now have a valid .get_raw_address().

--HG--
branch : py3-recvmsg_into

- - - - -
ec767bbb by Ronan Lamy at 2020-04-17T22:14:33Z
Simplify rpython recvinto() and deal with non-raw buffers in interp_socket.py

The 'rwbuffer' argument must now have a valid .get_raw_address().

--HG--
branch : rpython-recvmsg_into

- - - - -
d076f6a6 by Ronan Lamy at 2020-04-20T18:52:31Z
Simplify RSocket.recvfrom_into() as well

--HG--
branch : py3-recvmsg_into

- - - - -
4af9aedf by Ronan Lamy at 2020-04-20T18:52:31Z
Simplify RSocket.recvfrom_into() as well

--HG--
branch : rpython-recvmsg_into

- - - - -
4b1a3ce7 by Ronan Lamy at 2020-04-20T20:05:19Z
Move LLBuffer to rlib, so it can be used outside _cffi_backend

--HG--
branch : py3-recvmsg_into

- - - - -
cdaf7d4d by Ronan Lamy at 2020-04-20T20:05:19Z
Move LLBuffer to rlib, so it can be used outside _cffi_backend

--HG--
branch : rpython-recvmsg_into

- - - - -
770c6d7b by Ronan Lamy at 2020-04-20T20:28:37Z
Add some tests for LLBuffer

--HG--
branch : py3-recvmsg_into

- - - - -
c1fe82eb by Ronan Lamy at 2020-04-20T20:28:37Z
Add some tests for LLBuffer

--HG--
branch : rpython-recvmsg_into

- - - - -
1b13bbe0 by Ronan Lamy at 2020-04-23T18:03:28Z
Reimplement RSocket.recv() and .recvfrom() using their _into variants

--HG--
branch : py3-recvmsg_into

- - - - -
5ae486f7 by Ronan Lamy at 2020-04-23T18:03:28Z
Reimplement RSocket.recv() and .recvfrom() using their _into variants

--HG--
branch : rpython-recvmsg_into

- - - - -
2e3b64f5 by Ronan Lamy at 2020-04-23T18:32:16Z
Create RSocket.recvmsg_into() and call it from .recvmsg()

--HG--
branch : py3-recvmsg_into

- - - - -
eedf6b9b by Ronan Lamy at 2020-04-23T18:32:16Z
Create RSocket.recvmsg_into() and call it from .recvmsg()

--HG--
branch : rpython-recvmsg_into

- - - - -
404d06d5 by Ronan Lamy at 2020-04-24T18:47:21Z
Fix RSocket.recvmsg_into() to actually handle multiple buffers

--HG--
branch : py3-recvmsg_into

- - - - -
cb119898 by Ronan Lamy at 2020-04-24T18:47:21Z
Fix RSocket.recvmsg_into() to actually handle multiple buffers

--HG--
branch : rpython-recvmsg_into

- - - - -
b546e376 by Ronan Lamy at 2020-04-24T18:48:02Z
Implement socket.recvmsg_into()

--HG--
branch : py3-recvmsg_into

- - - - -
2ba0c129 by Ronan Lamy at 2020-04-28T16:11:35Z
document branch

--HG--
branch : rpython-recvmsg_into

- - - - -
b6d11ecf by Ronan Lamy at 2020-04-28T16:12:10Z
Close branch before merging

--HG--
branch : rpython-recvmsg_into

- - - - -
ddc6341a by Ronan Lamy at 2020-04-28T16:13:01Z
Merge branch rpython-recvmsg_into

- - - - -
b49c2ff3 by Ronan Lamy at 2020-04-28T16:14:19Z
document branch

--HG--
branch : py3-recvmsg_into

- - - - -
aca48719 by Ronan Lamy at 2020-04-28T16:14:23Z
Close branch before merging

--HG--
branch : py3-recvmsg_into

- - - - -
e29fc0c3 by Ronan Lamy at 2020-04-28T16:15:31Z
Merge branch py3-recvmsg_into

--HG--
branch : py3.6

- - - - -
b1ad3712 by Ronan Lamy at 2020-04-28T16:18:34Z
hg merge default

--HG--
branch : py3.6

- - - - -


10 changed files:

- pypy/doc/whatsnew-head.rst
- pypy/doc/whatsnew-pypy3-head.rst
- pypy/module/_cffi_backend/cbuffer.py
- pypy/module/_socket/interp_socket.py
- pypy/module/_socket/test/test_sock_app.py
- rpython/rlib/_rsocket_rffi.py
- rpython/rlib/buffer.py
- rpython/rlib/rsocket.py
- rpython/rlib/test/test_buffer.py
- rpython/rlib/test/test_rsocket.py


View it on GitLab: 
https://foss.heptapod.net/pypy/pypy/compare/66f2b6de329f585503f5b30c14fc1be138323607...b1ad3712c70a11587e5c6750f36ee9ecf30f48c4

-- 
View it on GitLab: 
https://foss.heptapod.net/pypy/pypy/compare/66f2b6de329f585503f5b30c14fc1be138323607...b1ad3712c70a11587e5c6750f36ee9ecf30f48c4
You're receiving this email because of your account on foss.heptapod.net.


_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to