Cython has moved to github.

cython-devel

view tests/errors/nonconst_def.pyx @ 1604:6d42bbf30e7f

made new test case an error test case
author Stefan Behnel <scoder@users.berlios.de>
date Sun Jan 11 08:42:08 2009 +0100 (3 years ago)
parents tests/compile/nonconst_def.pyx@8cfcf8316bc5
children
line source
1 import os
2 DEF ospath = os.path
4 _ERRORS = u"""
5 2:15: Compile-time name 'os' not defined
6 2:15: Error in compile-time expression: AttributeError: 'NoneType' object has no attribute 'path'
7 """