-
Notifications
You must be signed in to change notification settings - Fork 101
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
Client can be pickled and unpickled #22
Conversation
Checking up on this. Are there any issues that would block this from being merged? Any requests for further changes? |
This is incomplete without also exposing A more complete fix here would be, in addition to exposing
This will be sure to allow the user to access anything defined on the python object (including An even MORE complete fix is to NOT return a new object when it looks like a double underscore function - I think it is a reasonable limitation to the user experience to require special care / disallowing the shortcut syntax when your API happens to look like special Python functions (much like the explanation states in the docstring of
|
You are correct about the potential problems in |
Huh. I thought I had an example Friday night, but I can't remember what it was. I guess I assumed it was required because it was originally failing on line 495 in pickle.py which implied it was defaulting to I'm still not convinced I didn't have an example. I feel like I'll run into it later. If I do, I'll let you know. Otherwise, carry on! :) |
Implements #18