From: Stefan Behnel Date: Thu, 3 Dec 2009 12:23:21 +0000 (+0100) Subject: typo in new test case X-Git-Tag: 0.12.1~107 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=3268f135d169a656630161e93a7087268bb59a4b;p=cython.git typo in new test case --- diff --git a/tests/run/c_type_methods_T236.pyx b/tests/run/c_type_methods_T236.pyx index ed536b90..9286d8a2 100644 --- 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()