WebKit Bugzilla
Attachment 359483 Details for
Bug 193570
: [Flatpak] Missing KeyboardInterrupt exception handler
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
patch
0001-patch.patch (text/plain), 1.34 KB, created by
Philippe Normand
on 2019-01-18 07:23:41 PST
(
hide
)
Description:
patch
Filename:
MIME Type:
Creator:
Philippe Normand
Created:
2019-01-18 07:23:41 PST
Size:
1.34 KB
patch
obsolete
>From 6292f8298d47b61e5cf4d73b3d0c75be45fa958c Mon Sep 17 00:00:00 2001 >From: Philippe Normand <pnormand@igalia.com> >Date: Fri, 18 Jan 2019 15:21:10 +0000 >Subject: [PATCH] patch > >--- > Tools/ChangeLog | 10 ++++++++++ > Tools/flatpak/flatpakutils.py | 2 ++ > 2 files changed, 12 insertions(+) > >diff --git a/Tools/ChangeLog b/Tools/ChangeLog >index 51421ce9880..9ed97b653c7 100644 >--- a/Tools/ChangeLog >+++ b/Tools/ChangeLog >@@ -1,3 +1,13 @@ >+2019-01-18 Philippe Normand <pnormand@igalia.com> >+ >+ [Flatpak] Missing KeyboardInterrupt exception handler >+ https://bugs.webkit.org/show_bug.cgi?id=193570 >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ * flatpak/flatpakutils.py: >+ (WebkitFlatpak.run_in_sandbox): Basic KeyboardInterrupt handling. >+ > 2019-01-18 Zalan Bujtas <zalan@apple.com> > > [LFC][BFC][MarginCollapsing] Collapsing through should not ignore floats. >diff --git a/Tools/flatpak/flatpakutils.py b/Tools/flatpak/flatpakutils.py >index 35d35d44c98..5484b48c56e 100644 >--- a/Tools/flatpak/flatpakutils.py >+++ b/Tools/flatpak/flatpakutils.py >@@ -767,6 +767,8 @@ class WebkitFlatpak: > except subprocess.CalledProcessError as e: > sys.stderr.write(str(e) + "\n") > return e.returncode >+ except KeyboardInterrupt: >+ return 0 > > return 0 > >-- >2.20.1 >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Flags:
mcatanzaro
:
review+
Actions:
View
|
Formatted Diff
|
Diff
Attachments on
bug 193570
: 359483