-
-
Notifications
You must be signed in to change notification settings - Fork 4.5k
Extract session buffers as memoryviews #7798
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
A bug in pyzmq forces us to have a workaround, which can be deleted when the pyzmq dependency is upgraded to fix pyzmq issue ipython#646. Thanks to @minrk for helping work on the code and also for the bugfix in pyzmq.
|
👍 thanks, @jasongrout. |
|
I feel bad about the python2 only fix in the zmqhandlers file. It makes a copy on python3 too. Do we support having branches in our code for python2/python3? |
|
Test failures on Python 3.3 only, but they look real: |
|
Looks like my python 3 optimization was actually added in 3.4: https://bugs.python.org/issue15958 I'll reverse the optimization tomorrow. Thanks. |
|
It's also fine, as far as I'm concerned, to have an |
620ec7c to
e566bc0
Compare
|
@takluyver - done. let's see if it passes the tests. |
e566bc0 to
4abb13b
Compare
|
Tests are passing, but not merging now as this is milestoned for 4.0. |
|
👍 for getting this in right after the 3.0 release. |
Extract session buffers as memoryviews
A bug in pyzmq forces us to have a workaround, which can be deleted when the pyzmq dependency is upgraded to fix zeromq/pyzmq#646.
Thanks to @minrk for helping work on the code and also for the bugfix in pyzmq.