Changeset 65360 in webkit


Ignore:
Timestamp:
Aug 14, 2010 12:17:47 AM (14 years ago)
Author:
eric@webkit.org
Message:

2010-08-14 Eric Seidel <eric@webkit.org>

Unreviewed. Another fix to support python 2.3.

Add support for MathML entities
https://bugs.webkit.org/show_bug.cgi?id=43949

  • Scripts/webkitpy/thirdparty/simplejson/decoder.py:
    • It looks like our simplejson is version 1.7.3 which should be python 2.3 compatible. But someone modified our copy slightly from the original source. I've removed the relative import in hopes this fixes the problem.
Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r65359 r65360  
     12010-08-14  Eric Seidel  <eric@webkit.org>
     2
     3        Unreviewed.  Another fix to support python 2.3.
     4
     5        Add support for MathML entities
     6        https://bugs.webkit.org/show_bug.cgi?id=43949
     7
     8        * Scripts/webkitpy/thirdparty/simplejson/decoder.py:
     9         - It looks like our simplejson is version 1.7.3 which
     10           should be python 2.3 compatible.  But someone modified
     11           our copy slightly from the original source.
     12           I've removed the relative import in hopes this fixes
     13           the problem.
     14
    1152010-08-13  Eric Seidel  <eric@webkit.org>
    216
  • trunk/WebKitTools/Scripts/webkitpy/thirdparty/simplejson/decoder.py

    r57443 r65360  
    44import re
    55
    6 from .scanner import Scanner, pattern
     6from scanner import Scanner, pattern
    77
    88FLAGS = re.VERBOSE | re.MULTILINE | re.DOTALL
Note: See TracChangeset for help on using the changeset viewer.