Changeset 70586 in webkit


Ignore:
Timestamp:
Oct 26, 2010 4:15:25 PM (14 years ago)
Author:
eric@webkit.org
Message:

2010-10-26 Eric Seidel <eric@webkit.org>

Unreviewed. Adding import with_statement to fix python 2.5.

Teach webkit-patch how to read credentials from the environment
https://bugs.webkit.org/show_bug.cgi?id=48275

  • Scripts/webkitpy/common/net/credentials_unittest.py:
    • import with_statement to fix python 2.5.
Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r70584 r70586  
     12010-10-26  Eric Seidel  <eric@webkit.org>
     2
     3        Unreviewed.  Adding import with_statement to fix python 2.5.
     4
     5        Teach webkit-patch how to read credentials from the environment
     6        https://bugs.webkit.org/show_bug.cgi?id=48275
     7
     8        * Scripts/webkitpy/common/net/credentials_unittest.py:
     9         - import with_statement to fix python 2.5.
     10
    1112010-10-26  Alexey Proskuryakov  <ap@apple.com>
    212
  • trunk/WebKitTools/Scripts/webkitpy/common/net/credentials_unittest.py

    r70562 r70586  
    2626# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
    2727# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     28
     29from __future__ import with_statement
    2830
    2931import os
Note: See TracChangeset for help on using the changeset viewer.