summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Bradshaw <robertwb@gmail.com>2016-11-21 22:35:40 -0800
committerRobert Bradshaw <robertwb@gmail.com>2016-11-21 22:35:40 -0800
commitea1939d4e88c598dd9685ca5372d6da73e0b44b0 (patch)
tree3be3f56e09ea67c766f709e4cb3810ac5cef2927
parent966a296ac4e4862dee9a571ee412886ca3c61144 (diff)
downloadcython-ea1939d4e88c598dd9685ca5372d6da73e0b44b0.tar.gz
Fix some trailing Ls in doctsts.
-rw-r--r--tests/run/pyintop.pyx6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/run/pyintop.pyx b/tests/run/pyintop.pyx
index b9fba34d0..8ca77aef8 100644
--- a/tests/run/pyintop.pyx
+++ b/tests/run/pyintop.pyx
@@ -159,16 +159,16 @@ def lshift_int(obj):
>>> bigints(lshift_int(-32))
(-256, -68719476736, -295147905179352825856, -340282366920938463463374607431768211456)
- >>> (2**28) << 3
+ >>> bigint((2**28) << 3)
2147483648
>>> bigints(lshift_int(2**28))
(2147483648, 576460752303423488, 2475880078570760549798248448, 2854495385411919762116571938898990272765493248)
- >>> (-2**28) << 3
+ >>> bigint((-2**28) << 3)
-2147483648
>>> bigints(lshift_int(-2**28))
(-2147483648, -576460752303423488, -2475880078570760549798248448, -2854495385411919762116571938898990272765493248)
- >>> (2**30) << 3
+ >>> bigint((2**30) << 3)
8589934592
>>> bigints(lshift_int(2**30))
(8589934592, 2305843009213693952, 9903520314283042199192993792, 11417981541647679048466287755595961091061972992)