Changeset 107156 in webkit


Ignore:
Timestamp:
Feb 8, 2012 4:50:45 PM (12 years ago)
Author:
abarth@webkit.org
Message:

Remove Python 2.5 support from WebKit
https://bugs.webkit.org/show_bug.cgi?id=71593

Reviewed by Eric Seidel.

This is the last vestige of our Python 2.5 support.

  • Scripts/webkitpy/tool/commands/queues_unittest.py:

(AbstractQueueTest.test_log_from_script_error_for_upload):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r107155 r107156  
     12012-02-08  Adam Barth  <abarth@webkit.org>
     2
     3        Remove Python 2.5 support from WebKit
     4        https://bugs.webkit.org/show_bug.cgi?id=71593
     5
     6        Reviewed by Eric Seidel.
     7
     8        This is the last vestige of our Python 2.5 support.
     9
     10        * Scripts/webkitpy/tool/commands/queues_unittest.py:
     11        (AbstractQueueTest.test_log_from_script_error_for_upload):
     12
    1132012-02-08  Adam Barth  <abarth@webkit.org>
    214
  • trunk/Tools/Scripts/webkitpy/tool/commands/queues_unittest.py

    r106518 r107156  
    119119    def test_log_from_script_error_for_upload(self):
    120120        self._assert_log_message(ScriptError("test"), "test")
    121         # In python 2.5 unicode(Exception) is busted. See:
    122         # http://bugs.python.org/issue2517
    123         # With no good workaround, we just ignore these tests.
    124         if not hasattr(Exception, "__unicode__"):
    125             return
    126 
    127121        unicode_tor = u"WebKit \u2661 Tor Arne Vestb\u00F8!"
    128122        utf8_tor = unicode_tor.encode("utf-8")
Note: See TracChangeset for help on using the changeset viewer.