projects
/
cython.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e9f67ac
)
typo in new test case
author
Stefan Behnel
<scoder@users.berlios.de>
Thu, 3 Dec 2009 12:23:21 +0000
(13:23 +0100)
committer
Stefan Behnel
<scoder@users.berlios.de>
Thu, 3 Dec 2009 12:23:21 +0000
(13:23 +0100)
tests/run/c_type_methods_T236.pyx
patch
|
blob
|
history
diff --git
a/tests/run/c_type_methods_T236.pyx
b/tests/run/c_type_methods_T236.pyx
index ed536b908b021f7b70f6680151ab504a0d8f708c..9286d8a29d79ca62c08d1f72a94e571f969804cb 100644
(file)
--- a/
tests/run/c_type_methods_T236.pyx
+++ b/
tests/run/c_type_methods_T236.pyx
@@
-3,14
+3,14
@@
__doc__ = ''
import sys
if sys.version_info >= (2,6):
- __doc__ = '''
+ __doc__
+
= '''
>>> float_is_integer(1.0)
True
>>> float_is_integer(1.1)
False
'''
if sys.version_info >= (3,1):
- __doc__ = '''
+ __doc__
+
= '''
>>> int_bit_length(1) == (1).bit_length()
True
>>> int_bit_length(1234) == (1234).bit_length()