[Webkit-unassigned] [Bug 137338] Remove workarounds for versions of Python before 2.7

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Fri Oct 3 05:44:16 PDT 2014


https://bugs.webkit.org/show_bug.cgi?id=137338





--- Comment #7 from Csaba Osztrogonác <ossy at webkit.org>  2014-10-03 05:44:13 PST ---
(From update of attachment 239098)
View in context: https://bugs.webkit.org/attachment.cgi?id=239098&action=review

> Tools/Scripts/webkitpy/port/driver.py:534
> -        self.content = str()  # FIXME: Should be bytearray() once we require Python 2.6.
> +        self.content = bytearray()

This one ...

> Tools/Scripts/webkitpy/port/server_process.py:99
> -        self._output = str()  # bytesarray() once we require Python 2.6
> -        self._error = str()  # bytesarray() once we require Python 2.6
> +        self._output = bytearray()
> +        self._error = bytearray()

... or this one broke the tests. Éva, could you check what happened?

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.


More information about the webkit-unassigned mailing list