Python 3 support is required for Buildbot 2+. Part 1 and 2 of this change were in: https://bugs.webkit.org/show_bug.cgi?id=217727 and https://bugs.webkit.org/show_bug.cgi?id=218130
Created attachment 413581 [details] Patch
Created attachment 413582 [details] Patch
Comment on attachment 413582 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=413582&action=review > Tools/CISupport/build-webkit-org/loadConfig.py:-189 > - keywords = filter(None, re.split('[, \-_:()]+', str(builder['name']))) Seems like code that results in the what the original code is would be: keywords = re.split('[, \-_:()]+', str(builder['name'])) or None But it likely doesn't matter.
Committed r269581: <https://trac.webkit.org/changeset/269581> All reviewed patches have been landed. Closing bug and clearing flags on attachment 413582 [details].
<rdar://problem/71193363>