~pythonregexp2.7/python/issue2636-12

« back to all changes in this revision

Viewing changes to Lib/test/test_traceback.py

  • Committer: Jeffrey C. "The TimeHorse" Jacobs
  • Date: 2008-09-21 17:58:08 UTC
  • mfrom: (39033.1.6 Regexp-2.7)
  • Revision ID: darklord@timehorse.com-20080921175808-j16o8cmct0t3f2uk
Merged in changes from the core Regexp branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
177
177
        banner, location, source_line = tb_lines
178
178
        self.assert_(banner.startswith('Traceback'))
179
179
        self.assert_(location.startswith('  File'))
180
 
        self.assert_(source_line.startswith('raise'))
 
180
        self.assert_(source_line.startswith('    raise'))
181
181
 
182
182
 
183
183
def test_main():