File: test382.py

package info (click to toggle)
jython 2.7.3%2Brepack1-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 62,820 kB
  • sloc: python: 641,384; java: 306,981; xml: 2,066; sh: 514; ansic: 126; makefile: 77
file content (46 lines) | stat: -rw-r--r-- 701 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
"""
catching frame wasn't captured in a traceback
"""

import sys

def check(tb,expt_lines):
  assert tb.tb_frame is sys._getframe(1),"catching frame should be included"
  lines=[]
  while tb:
    lines.append(tb.tb_lineno)
    tb = tb.tb_next
  assert expt_lines==lines, "bogus line numbers: %s vs. expected %s" % (lines,expt_lines)

def f():
  try:
   raise KeyError # 17
  except:
    raise

try:
  f() # 22
except:
  t,e,tb = sys.exc_info()
  check(tb,[22,17])

try:
  f() # 28
except KeyError,e:
  t,e,tb = sys.exc_info()
  check(tb,[28,17])

try:
 1/0 # 34
except:
 t,e,tb = sys.exc_info()
 check(tb,[34])

try:
 try:
  1/0 # 41
 except:
  raise
except:
 t,e,tb = sys.exc_info()
 check(tb,[41])