gh-105745: Fix open method of webbrowser.Konqueror (#105746)

This commit is contained in:
Nikita Sobolev 2023-06-14 13:29:16 +03:00 committed by GitHub
parent 67f69dba0a
commit e5d45b7444
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 9 deletions

View file

@ -390,15 +390,6 @@ def open(self, url, new=0, autoraise=True):
return (p.poll() is None)
def open(self, url, new=0, autoraise=True):
sys.audit("webbrowser.open", url)
if new:
ok = self._remote("LOADNEW " + url)
else:
ok = self._remote("LOAD " + url)
return ok
class Edge(UnixBrowser):
"Launcher class for Microsoft Edge browser."

View file

@ -0,0 +1 @@
Fix ``webbrowser.Konqueror.open`` method.