From 0915cbacf49368d05cef9248ce17482155739921 Mon Sep 17 00:00:00 2001 From: Dag Sverre Seljebotn Date: Thu, 15 Oct 2009 10:01:27 +0200 Subject: [PATCH] #412 testcase --- tests/run/charcomparisonT412.pyx | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 tests/run/charcomparisonT412.pyx diff --git a/tests/run/charcomparisonT412.pyx b/tests/run/charcomparisonT412.pyx new file mode 100644 index 00000000..ece80a97 --- /dev/null +++ b/tests/run/charcomparisonT412.pyx @@ -0,0 +1,11 @@ +def f(): + """ + >>> f() + True + True + """ + + cdef char a + a = 62 + print (a == '>') + print (a == '>') -- 2.26.2