Summary: | Inspector scripts are not compatible with Python v3 | ||||||
---|---|---|---|---|---|---|---|
Product: | WebKit | Reporter: | Marcel Tiede <marcel.tiede> | ||||
Component: | WebKitGTK | Assignee: | Zan Dobersek <zan> | ||||
Status: | RESOLVED FIXED | ||||||
Severity: | Normal | CC: | joepeck, timothy, zan | ||||
Priority: | P2 | ||||||
Version: | 528+ (Nightly build) | ||||||
Hardware: | PC | ||||||
OS: | Linux | ||||||
Attachments: |
|
Description
Marcel Tiede
2014-01-16 11:58:59 PST
Created attachment 221453 [details]
Patch
Comment on attachment 221453 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=221453&action=review cool! > Source/JavaScriptCore/inspector/scripts/jsmin.py:36 > +try: > + from StringIO import StringIO > +except ImportError: > + from io import StringIO Maybe add a Python3 comment here so that we know to remove it in the future? Committed r162250: <http://trac.webkit.org/changeset/162250> |