Extract session buffers as memoryviews#7798
Merged
minrk merged 5 commits intoipython:masterfrom Mar 20, 2015
Merged
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.
Member
|
👍 thanks, @jasongrout. |
Member
Author
|
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? |
Member
|
Test failures on Python 3.3 only, but they look real: |
Member
Author
|
Looks like my python 3 optimization was actually added in 3.4: https://bugs.python.org/issue15958 I'll reverse the optimization tomorrow. Thanks. |
Member
|
It's also fine, as far as I'm concerned, to have an |
620ec7c to
e566bc0
Compare
Member
Author
|
@takluyver - done. let's see if it passes the tests. |
e566bc0 to
4abb13b
Compare
Merged
Member
|
Tests are passing, but not merging now as this is milestoned for 4.0. |
Member
|
👍 for getting this in right after the 3.0 release. |
minrk
added a commit
that referenced
this pull request
Mar 20, 2015
Extract session buffers as memoryviews
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
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.