Skip to content

Commit d47e82d

Browse files
committed
Test 3.12 and 3.13, stop testing before 3.8
1 parent 41db4a5 commit d47e82d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

82 files changed

+3203
-0
lines changed
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
12:34:56.78 >>> Call to main in File "/path/to_file.py", line 15
2+
12:34:56.78  15 | def main():
3+
12:34:56.78  16 | try:
4+
12:34:56.78  17 | (None
5+
12:34:56.78  18 | or foo)()
6+
12:34:56.78  17 | (None
7+
 12:34:56.78 >>> Call to foo in File "/path/to_file.py", line 10
8+
 12:34:56.78  10 | def foo():
9+
 12:34:56.78  11 | raise TypeError
10+
 12:34:56.78 !!! TypeError
11+
 12:34:56.78 !!! Call ended by exception
12+
12:34:56.78  17 | (None
13+
12:34:56.78 !!! TypeError
14+
12:34:56.78 !!! When calling: (None
15+
12:34:56.78  or foo)()
16+
12:34:56.78  19 | except:
17+
12:34:56.78  20 | pass
18+
12:34:56.78  21 | x = 1
19+
12:34:56.78  22 | y = 2
20+
12:34:56.78  23 | pp(
21+
12:34:56.78  25 | x + y
22+
12:34:56.78  24 | [
23+
12:34:56.78  23 | pp(
24+
12:34:56.78 LOG:
25+
12:34:56.78 .... [
26+
12:34:56.78  x + y
27+
12:34:56.78  ] = [3]
28+
12:34:56.78 <<< Return value from main: None
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
12:34:56.78 >>> Call to main in File "/path/to_file.py", line 15
2+
12:34:56.78  15 | def main():
3+
12:34:56.78  16 | try:
4+
12:34:56.78  17 | (None
5+
12:34:56.78  18 | or foo)()
6+
12:34:56.78  17 | (None
7+
 12:34:56.78 >>> Call to foo in File "/path/to_file.py", line 10
8+
 12:34:56.78  10 | def foo():
9+
 12:34:56.78  11 | raise TypeError
10+
 12:34:56.78 !!! TypeError
11+
 12:34:56.78 !!! Call ended by exception
12+
12:34:56.78  17 | (None
13+
12:34:56.78 !!! TypeError
14+
12:34:56.78 !!! When calling: (None
15+
12:34:56.78  or foo)()
16+
12:34:56.78  19 | except:
17+
12:34:56.78  20 | pass
18+
12:34:56.78  21 | x = 1
19+
12:34:56.78  22 | y = 2
20+
12:34:56.78  23 | pp(
21+
12:34:56.78  25 | x + y
22+
12:34:56.78  24 | [
23+
12:34:56.78  23 | pp(
24+
12:34:56.78 LOG:
25+
12:34:56.78 .... [
26+
12:34:56.78  x + y
27+
12:34:56.78  ] = [3]
28+
12:34:56.78 <<< Return value from main: None
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
12:34:56.78 MainThread 123456789 all_columns.py /path/to_file.py foo main.<locals>.foo >>> Call to main.<locals>.foo in File "/path/to_file.py", line 8
2+
12:34:56.78 MainThread 123456789 all_columns.py /path/to_file.py foo main.<locals>.foo 8 | def foo():
3+
12:34:56.78 MainThread 123456789 all_columns.py /path/to_file.py foo main.<locals>.foo 9 | x = 1
4+
12:34:56.78 MainThread 123456789 all_columns.py /path/to_file.py foo main.<locals>.foo 10 | y = x + 2
5+
12:34:56.78 MainThread 123456789 all_columns.py /path/to_file.py foo main.<locals>.foo .............. y = 3
6+
12:34:56.78 MainThread 123456789 all_columns.py /path/to_file.py foo main.<locals>.foo <<< Return value from main.<locals>.foo: None
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
12:34:56.78 >>> Enter with block in main in File "/path/to_file.py", line 16
2+
12:34:56.78 17 | result1 = f2(42)
3+
12:34:56.78 >>> Call to f2 in File "/path/to_file.py", line 1
4+
12:34:56.78 ...... a = 42
5+
12:34:56.78 1 | def f2(a):
6+
12:34:56.78 2 | def f3(a):
7+
12:34:56.78 12 | return f3(a)
8+
12:34:56.78 >>> Call to f2.<locals>.f3 in File "/path/to_file.py", line 2
9+
12:34:56.78 .......... a = 42
10+
12:34:56.78 2 | def f3(a):
11+
12:34:56.78 3 | x = 0
12+
12:34:56.78 4 | x += 1
13+
12:34:56.78 .............. x = 1
14+
12:34:56.78 6 | def f4(_a):
15+
12:34:56.78 10 | return f4(a)
16+
12:34:56.78 >>> Call to f2.<locals>.f3.<locals>.f4 in File "/path/to_file.py", line 6
17+
12:34:56.78 .............. _a = 42
18+
12:34:56.78 .............. x = 1
19+
12:34:56.78 6 | def f4(_a):
20+
12:34:56.78 7 | _y = x
21+
12:34:56.78 .................. _y = 1
22+
12:34:56.78 8 | return 42
23+
12:34:56.78 <<< Return value from f2.<locals>.f3.<locals>.f4: 42
24+
12:34:56.78 10 | return f4(a)
25+
12:34:56.78 <<< Return value from f2.<locals>.f3: 42
26+
12:34:56.78 12 | return f3(a)
27+
12:34:56.78 <<< Return value from f2: 42
28+
12:34:56.78 17 | result1 = f2(42)
29+
12:34:56.78 .............. result1 = 42
30+
12:34:56.78 16 | with snoop(depth=4):
31+
12:34:56.78 <<< Exit with block in main

tests/sample_results/3.12/color.txt

Lines changed: 146 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,146 @@
1+
12:34:56.78 >>> Call to main in File "/path/to_file.py", line 15
2+
12:34:56.78  15 | def main():
3+
12:34:56.78  16 | try:
4+
12:34:56.78  17 | (None
5+
12:34:56.78  18 | or foo)()
6+
12:34:56.78  17 | (None
7+
 12:34:56.78 >>> Call to foo in File "/path/to_file.py", line 10
8+
 12:34:56.78  10 | def foo():
9+
 12:34:56.78  11 | raise TypeError
10+
 12:34:56.78 !!! TypeError
11+
 12:34:56.78 !!! Call ended by exception
12+
12:34:56.78  17 | (None
13+
12:34:56.78 !!! TypeError
14+
12:34:56.78 !!! When calling: (None
15+
12:34:56.78  or foo)()
16+
12:34:56.78  19 | except:
17+
12:34:56.78  20 | pass
18+
12:34:56.78  21 | pp(
19+
12:34:56.78  24 | for x, y in zip(range(1000, 1020), range(2000, 2020))
20+
12:34:56.78  22 | [
21+
12:34:56.78  24 | for x, y in zip(range(1000, 1020), range(2000, 2020))
22+
12:34:56.78 .......... x = 1000
23+
12:34:56.78 .......... y = 2000
24+
12:34:56.78  23 | x + y
25+
12:34:56.78  22 | [
26+
12:34:56.78  24 | for x, y in zip(range(1000, 1020), range(2000, 2020))
27+
12:34:56.78 .......... x = 1001
28+
12:34:56.78 .......... y = 2001
29+
12:34:56.78  23 | x + y
30+
12:34:56.78  22 | [
31+
12:34:56.78  24 | for x, y in zip(range(1000, 1020), range(2000, 2020))
32+
12:34:56.78 .......... x = 1002
33+
12:34:56.78 .......... y = 2002
34+
12:34:56.78  23 | x + y
35+
12:34:56.78  22 | [
36+
12:34:56.78  24 | for x, y in zip(range(1000, 1020), range(2000, 2020))
37+
12:34:56.78 .......... x = 1003
38+
12:34:56.78 .......... y = 2003
39+
12:34:56.78  23 | x + y
40+
12:34:56.78  22 | [
41+
12:34:56.78  24 | for x, y in zip(range(1000, 1020), range(2000, 2020))
42+
12:34:56.78 .......... x = 1004
43+
12:34:56.78 .......... y = 2004
44+
12:34:56.78  23 | x + y
45+
12:34:56.78  22 | [
46+
12:34:56.78  24 | for x, y in zip(range(1000, 1020), range(2000, 2020))
47+
12:34:56.78 .......... x = 1005
48+
12:34:56.78 .......... y = 2005
49+
12:34:56.78  23 | x + y
50+
12:34:56.78  22 | [
51+
12:34:56.78  24 | for x, y in zip(range(1000, 1020), range(2000, 2020))
52+
12:34:56.78 .......... x = 1006
53+
12:34:56.78 .......... y = 2006
54+
12:34:56.78  23 | x + y
55+
12:34:56.78  22 | [
56+
12:34:56.78  24 | for x, y in zip(range(1000, 1020), range(2000, 2020))
57+
12:34:56.78 .......... x = 1007
58+
12:34:56.78 .......... y = 2007
59+
12:34:56.78  23 | x + y
60+
12:34:56.78  22 | [
61+
12:34:56.78  24 | for x, y in zip(range(1000, 1020), range(2000, 2020))
62+
12:34:56.78 .......... x = 1008
63+
12:34:56.78 .......... y = 2008
64+
12:34:56.78  23 | x + y
65+
12:34:56.78  22 | [
66+
12:34:56.78  24 | for x, y in zip(range(1000, 1020), range(2000, 2020))
67+
12:34:56.78 .......... x = 1009
68+
12:34:56.78 .......... y = 2009
69+
12:34:56.78  23 | x + y
70+
12:34:56.78  22 | [
71+
12:34:56.78  24 | for x, y in zip(range(1000, 1020), range(2000, 2020))
72+
12:34:56.78 .......... x = 1010
73+
12:34:56.78 .......... y = 2010
74+
12:34:56.78  23 | x + y
75+
12:34:56.78  22 | [
76+
12:34:56.78  24 | for x, y in zip(range(1000, 1020), range(2000, 2020))
77+
12:34:56.78 .......... x = 1011
78+
12:34:56.78 .......... y = 2011
79+
12:34:56.78  23 | x + y
80+
12:34:56.78  22 | [
81+
12:34:56.78  24 | for x, y in zip(range(1000, 1020), range(2000, 2020))
82+
12:34:56.78 .......... x = 1012
83+
12:34:56.78 .......... y = 2012
84+
12:34:56.78  23 | x + y
85+
12:34:56.78  22 | [
86+
12:34:56.78  24 | for x, y in zip(range(1000, 1020), range(2000, 2020))
87+
12:34:56.78 .......... x = 1013
88+
12:34:56.78 .......... y = 2013
89+
12:34:56.78  23 | x + y
90+
12:34:56.78  22 | [
91+
12:34:56.78  24 | for x, y in zip(range(1000, 1020), range(2000, 2020))
92+
12:34:56.78 .......... x = 1014
93+
12:34:56.78 .......... y = 2014
94+
12:34:56.78  23 | x + y
95+
12:34:56.78  22 | [
96+
12:34:56.78  24 | for x, y in zip(range(1000, 1020), range(2000, 2020))
97+
12:34:56.78 .......... x = 1015
98+
12:34:56.78 .......... y = 2015
99+
12:34:56.78  23 | x + y
100+
12:34:56.78  22 | [
101+
12:34:56.78  24 | for x, y in zip(range(1000, 1020), range(2000, 2020))
102+
12:34:56.78 .......... x = 1016
103+
12:34:56.78 .......... y = 2016
104+
12:34:56.78  23 | x + y
105+
12:34:56.78  22 | [
106+
12:34:56.78  24 | for x, y in zip(range(1000, 1020), range(2000, 2020))
107+
12:34:56.78 .......... x = 1017
108+
12:34:56.78 .......... y = 2017
109+
12:34:56.78  23 | x + y
110+
12:34:56.78  22 | [
111+
12:34:56.78  24 | for x, y in zip(range(1000, 1020), range(2000, 2020))
112+
12:34:56.78 .......... x = 1018
113+
12:34:56.78 .......... y = 2018
114+
12:34:56.78  23 | x + y
115+
12:34:56.78  22 | [
116+
12:34:56.78  24 | for x, y in zip(range(1000, 1020), range(2000, 2020))
117+
12:34:56.78 .......... x = 1019
118+
12:34:56.78 .......... y = 2019
119+
12:34:56.78  23 | x + y
120+
12:34:56.78  22 | [
121+
12:34:56.78  21 | pp(
122+
12:34:56.78 LOG:
123+
12:34:56.78 .... [
124+
12:34:56.78  x + y
125+
12:34:56.78  for x, y in zip(range(1000, 1020), range(2000, 2020))
126+
12:34:56.78  ] = [3000,
127+
12:34:56.78  3002,
128+
12:34:56.78  3004,
129+
12:34:56.78  3006,
130+
12:34:56.78  3008,
131+
12:34:56.78  3010,
132+
12:34:56.78  3012,
133+
12:34:56.78  3014,
134+
12:34:56.78  3016,
135+
12:34:56.78  3018,
136+
12:34:56.78  3020,
137+
12:34:56.78  3022,
138+
12:34:56.78  3024,
139+
12:34:56.78  3026,
140+
12:34:56.78  3028,
141+
12:34:56.78  3030,
142+
12:34:56.78  3032,
143+
12:34:56.78  3034,
144+
12:34:56.78  3036,
145+
12:34:56.78  3038]
146+
12:34:56.78 <<< Return value from main: None

0 commit comments

Comments
 (0)