Title: [286468] trunk/Tools
Revision
286468
Author
[email protected]
Date
2021-12-02 17:03:15 -0800 (Thu, 02 Dec 2021)

Log Message

[resultsdbpy] Python 3.10 compatibility
https://bugs.webkit.org/show_bug.cgi?id=233771
<rdar://problem/85978234>

Reviewed by Dewei Zhu.

* Tools/Scripts/libraries/resultsdbpy/resultsdbpy/model/configuration_context.py:

Canonical link: https://commits.webkit.org/244808@main

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (286467 => 286468)


--- trunk/Tools/ChangeLog	2021-12-03 00:56:51 UTC (rev 286467)
+++ trunk/Tools/ChangeLog	2021-12-03 01:03:15 UTC (rev 286468)
@@ -1,3 +1,13 @@
+2021-11-29  Jonathan Bedard  <[email protected]>
+
+        [resultsdbpy] Make Python 3.10 compatible
+        https://bugs.webkit.org/show_bug.cgi?id=233771
+        <rdar://problem/85978234>
+
+        Reviewed by Dewei Zhu.
+
+        * Scripts/libraries/resultsdbpy/resultsdbpy/model/configuration_context.py:
+
 2021-12-02  Jonathan Bedard  <[email protected]>
 
         [git-webkit] Handle ambiguous branch names in land

Modified: trunk/Tools/Scripts/libraries/resultsdbpy/resultsdbpy/model/configuration_context.py (286467 => 286468)


--- trunk/Tools/Scripts/libraries/resultsdbpy/resultsdbpy/model/configuration_context.py	2021-12-03 00:56:51 UTC (rev 286467)
+++ trunk/Tools/Scripts/libraries/resultsdbpy/resultsdbpy/model/configuration_context.py	2021-12-03 01:03:15 UTC (rev 286468)
@@ -1,4 +1,4 @@
-# Copyright (C) 2019 Apple Inc. All rights reserved.
+# Copyright (C) 2019-2021 Apple Inc. All rights reserved.
 #
 # Redistribution and use in source and binary forms, with or without
 # modification, are permitted provided that the following conditions
@@ -26,7 +26,8 @@
 
 from cassandra.cqlengine import columns
 from cassandra.cqlengine.models import Model
-from collections import Iterable, OrderedDict
+from collections import OrderedDict
+from collections.abc import Iterable
 from datetime import datetime
 from resultsdbpy.controller.configuration import Configuration
 from resultsdbpy.model.commit_context import CommitContext
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to