Ignore:
Timestamp:
Mar 19, 2014, 11:31:01 PM (11 years ago)
Author:
dmik
Message:

python: Merge vendor 2.7.6 to trunk.

Location:
python/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • python/trunk

  • python/trunk/Lib/test/test_htmllib.py

    r2 r391  
    3939            """)
    4040        parser.close()
    41         self.assertEquals(parser.get_anchor_info(),
    42                           [('http://foo.org/', 'splat', ''),
    43                            ('http://www.python.org/', '', ''),
    44                            ('', 'frob', ''),
    45                            ])
     41        self.assertEqual(parser.get_anchor_info(),
     42                         [('http://foo.org/', 'splat', ''),
     43                          ('http://www.python.org/', '', ''),
     44                          ('', 'frob', ''),
     45                          ])
    4646
    4747    def test_decl_collection(self):
     
    5757            """)
    5858        parser.close()
    59         self.assertEquals(parser.get_decl_info(),
    60                           ["if !supportEmptyParas",
    61                            "endif"
    62                            ])
     59        self.assertEqual(parser.get_decl_info(),
     60                         ["if !supportEmptyParas",
     61                          "endif"
     62                          ])
    6363
    6464def test_main():
Note: See TracChangeset for help on using the changeset viewer.