projects
/
cython.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
03448fe
)
Py3 test case fix
author
Stefan Behnel
<scoder@users.berlios.de>
Tue, 30 Dec 2008 12:01:17 +0000
(13:01 +0100)
committer
Stefan Behnel
<scoder@users.berlios.de>
Tue, 30 Dec 2008 12:01:17 +0000
(13:01 +0100)
tests/run/nonecheck.pyx
patch
|
blob
|
history
diff --git
a/tests/run/nonecheck.pyx
b/tests/run/nonecheck.pyx
index 96dd49c8e54dbfe005c13d2678675c92a0e7f05b..e1b3ed763b33a48e9e616e47f54f69584ab0e936 100644
(file)
--- a/
tests/run/nonecheck.pyx
+++ b/
tests/run/nonecheck.pyx
@@
-71,7
+71,7
@@
def checking(MyClass var):
if var is not None:
print var.a
else:
- print "var is None"
+ print
u
"var is None"
@cython.nonecheck(True)
def check_and_assign(MyClass var):