File: cython_example.txt

package info (click to toggle)
python-stack-data 0.6.3-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 496 kB
  • sloc: python: 2,204; sh: 29; makefile: 2
file content (11 lines) | stat: -rw-r--r-- 347 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
Traceback (most recent call last):
 File "cython_example.pyx", line 2, in tests.samples.cython_example.foo
       1 | def foo():
-->    2 |     bar()
       3 | 
 File "cython_example.pyx", line 5, in tests.samples.cython_example.bar
       2 |     bar()
       3 | 
       4 | cdef bar():
-->    5 |     raise ValueError("bar!")
ValueError: bar!