-
-
Notifications
You must be signed in to change notification settings - Fork 30.8k
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
bpo-31014: Fix the webbrowser module. #7267
bpo-31014: Fix the webbrowser module. #7267
Conversation
webbrowser._synthesize() called webbrowser.register() with outdated signature. Based on patch by John Still.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM.
I tested manually that test_webbrowser fails without the webbrowser.py fix.
You should credit John using the following tag at the end of your commit message (I didn't check if you already did it):
Co-Authored-By: John Still john@jmsdvl.com
GitHub recognizes this tag and will account John contribution!
Thanks @serhiy-storchaka for the PR 🌮🎉.. I'm working now to backport this PR to: 2.7, 3.6, 3.7. |
webbrowser._synthesize() called webbrowser.register() with outdated signature. Co-Authored-By: John Still <john@jmsdvl.com> (cherry picked from commit 25b804a) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
GH-8183 is a backport of this pull request to the 3.7 branch. |
Sorry, @serhiy-storchaka, I could not cleanly backport this to |
Sorry, @serhiy-storchaka, I could not cleanly backport this to |
webbrowser._synthesize()
calledwebbrowser.register()
with outdated signature.Based on patch by John Still (#2689).
https://bugs.python.org/issue31014