Files
TB-Docs/presentation/figs/midas_output2.txt
T
2026-08-19 15:34:21 +02:00

976 B

Info in /tmp/script.py from L1:8 to L1:9:
fib = [1,1,2]
~> Type: int
 
Info in /tmp/script.py from L1:10 to L1:11:
fib = [1,1,2]
~> Type: int
 
Info in /tmp/script.py from L1:12 to L1:13:
fib = [1,1,2]
~> Type: int
 
Info in /tmp/script.py from L1:7 to L1:14:
fib = [1,1,2]
~~~~~~~> Type: list[int]
 
Info in /tmp/script.py from L2:12 to L2:15:
fib.append(3.0)
~~~> Type: float
 
Info in /tmp/script.py from L2:1 to L2:4:
fib.append(3.0)
~~~> Type: list[int]
 
Info in /tmp/script.py from L2:1 to L2:16:
fib.append(3.0)
~~~~~~~~~~~~~~~> Type: <Unknown>
 
Error in /tmp/script.py from L2:12 to L2:15:
fib.append(3.0)
~~~> Wrong type for argument 'object', expected int, got float
 
Errors: 1 Infos: 7