]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.12] gh-105745: Fix open method of webbrowser.Konqueror (GH-105746) (#105777)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Wed, 14 Jun 2023 12:26:33 +0000 (05:26 -0700)
committerGitHub <noreply@github.com>
Wed, 14 Jun 2023 12:26:33 +0000 (12:26 +0000)
gh-105745: Fix open method of webbrowser.Konqueror (GH-105746)
(cherry picked from commit e5d45b7444733861153d6e8959c34323fd361322)

Co-authored-by: Nikita Sobolev <mail@sobolevn.me>
Lib/webbrowser.py
Misc/NEWS.d/next/Library/2023-06-14-10-27-34.gh-issue-105745.l1ttOQ.rst [new file with mode: 0644]

index b86d131f030d805d1392b04bf40c21df0d48e2c7..e0170afdf4da7d0fe15a97f3025041c5ac38aaf9 100755 (executable)
@@ -391,15 +391,6 @@ class Konqueror(BaseBrowser):
             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."
 
diff --git a/Misc/NEWS.d/next/Library/2023-06-14-10-27-34.gh-issue-105745.l1ttOQ.rst b/Misc/NEWS.d/next/Library/2023-06-14-10-27-34.gh-issue-105745.l1ttOQ.rst
new file mode 100644 (file)
index 0000000..7df7c5a
--- /dev/null
@@ -0,0 +1 @@
+Fix ``webbrowser.Konqueror.open`` method.