File tree Expand file tree Collapse file tree 3 files changed +14
-4
lines changed Expand file tree Collapse file tree 3 files changed +14
-4
lines changed Original file line number Diff line number Diff line change 1
1
tarball =configure-VERSION.tar.gz
2
- sha1 =17621baa3704964f752a02c3a1533a8adb59cd3d
3
- md5 =e1f4d86a1e996aeee5e5c072bf92f0a1
4
- cksum =3769097678
2
+ sha1 =b85d5166274c116a578276c7f3a4c81dce03f907
3
+ md5 =c468fd1ceed66270b7b9940610eeca54
4
+ cksum =4220060468
Original file line number Diff line number Diff line change 1
- 2e5af062ddd382d2d0eb8070dd0c6e872b77b6bd
1
+ 3e4ee897d7e994b1fb8495b20da675425a43c50d
Original file line number Diff line number Diff line change 38
38
<class 'sage.misc.lazy_import.LazyImport'>
39
39
sage: interacts
40
40
<module 'sage.interacts.all' from '...'>
41
+
42
+ Check that :trac:`34506` is resolved::
43
+
44
+ sage: x = int('1'*4301)
41
45
"""
42
46
# ****************************************************************************
43
47
# Copyright (C) 2005-2012 William Stein <[email protected] >
@@ -290,6 +294,12 @@ def quit_sage(verbose=True):
290
294
sage .misc .lazy_import .finish_startup ()
291
295
292
296
297
+ ### Python broke large ints; see trac #34506
298
+
299
+ if hasattr (sys , "set_int_max_str_digits" ):
300
+ sys .set_int_max_str_digits (0 )
301
+
302
+
293
303
def sage_globals ():
294
304
r"""
295
305
Return the Sage namespace.
You can’t perform that action at this time.
0 commit comments