We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e1ce1f6 + e142d65 commit 18d31f2Copy full SHA for 18d31f2
2 files changed
Lib/test/test_cmd_line.py
@@ -928,8 +928,6 @@ def test_parsing_error(self):
928
self.assertTrue(proc.stderr.startswith(err_msg), proc.stderr)
929
self.assertNotEqual(proc.returncode, 0)
930
931
- # TODO: RUSTPYTHON
932
- @unittest.expectedFailure
933
def test_int_max_str_digits(self):
934
code = "import sys; print(sys.flags.int_max_str_digits, sys.get_int_max_str_digits())"
935
vm/src/vm/setting.rs
@@ -151,7 +151,7 @@ impl Default for Settings {
151
check_hash_pycs_mode: "default".to_owned(),
152
allow_external_library: cfg!(feature = "importlib"),
153
utf8_mode: 1,
154
- int_max_str_digits: -1,
+ int_max_str_digits: 4300,
155
#[cfg(feature = "flame-it")]
156
profile_output: None,
157
0 commit comments