Title: [273266] trunk/Source/WebKit
Revision
273266
Author
[email protected]
Date
2021-02-22 11:55:45 -0800 (Mon, 22 Feb 2021)

Log Message

REGRESSION(r273204): webkitpy tests don't run on Py3
https://bugs.webkit.org/show_bug.cgi?id=222274

Patch by Sam Sneddon <[email protected]> on 2021-02-22
Reviewed by Jonathan Bedard.

This doesn't make them pass, but it does get them back to running to completion.

* Scripts/webkit/messages.py: avoid using a relative import

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (273265 => 273266)


--- trunk/Source/WebKit/ChangeLog	2021-02-22 19:44:49 UTC (rev 273265)
+++ trunk/Source/WebKit/ChangeLog	2021-02-22 19:55:45 UTC (rev 273266)
@@ -1,3 +1,14 @@
+2021-02-22  Sam Sneddon  <[email protected]>
+
+        REGRESSION(r273204): webkitpy tests don't run on Py3
+        https://bugs.webkit.org/show_bug.cgi?id=222274
+
+        Reviewed by Jonathan Bedard.
+
+        This doesn't make them pass, but it does get them back to running to completion.
+
+        * Scripts/webkit/messages.py: avoid using a relative import
+
 2021-02-22  Eric Carlson  <[email protected]>
 
         UserMediaPermissionRequestManagerProxy may be released while computing capture device list

Modified: trunk/Source/WebKit/Scripts/webkit/messages.py (273265 => 273266)


--- trunk/Source/WebKit/Scripts/webkit/messages.py	2021-02-22 19:44:49 UTC (rev 273265)
+++ trunk/Source/WebKit/Scripts/webkit/messages.py	2021-02-22 19:55:45 UTC (rev 273266)
@@ -24,9 +24,8 @@
 import re
 import sys
 
-from model import MessageReceiver, Message
 from webkit import parser
-from webkit.model import BUILTIN_ATTRIBUTE, ASYNC_ATTRIBUTE, SYNCHRONOUS_ATTRIBUTE, MAINTHREADCALLBACK_ATTRIBUTE, STREAM_ATTRIBUTE, WANTS_CONNECTION_ATTRIBUTE
+from webkit.model import BUILTIN_ATTRIBUTE, ASYNC_ATTRIBUTE, SYNCHRONOUS_ATTRIBUTE, MAINTHREADCALLBACK_ATTRIBUTE, STREAM_ATTRIBUTE, WANTS_CONNECTION_ATTRIBUTE, MessageReceiver, Message
 
 _license_header = """/*
  * Copyright (C) 2010-2021 Apple Inc. All rights reserved.
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to