Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork32.4k
Closed
Description
Documentation
Inhttps://docs.python.org/3/library/webbrowser.html#browser-controller-objects it says:
webbrowser.name System-dependent name for the browser.
when it should becontroller
instead ofwebbrowser
(it is the controller object that has thename
attribute, not the webbrowser module).
In addition to that, I think that the first sentence,
Browser controllers provide these methods which parallel three of the module-level convenience functions:
would probably be better with something like:
Browser controllers provide the `name` attribute, and these methods which parallel three of the module-level convenience functions:
Thanks!