Merge branch 'RustPython:main' into developer-experiance-tweaks

This commit is contained in:
James Clarke
2024-06-30 12:34:12 +01:00
committed by GitHub
2 changed files with 1 additions and 3 deletions

View File

@@ -928,8 +928,6 @@ class CmdLineTest(unittest.TestCase):
self.assertTrue(proc.stderr.startswith(err_msg), proc.stderr)
self.assertNotEqual(proc.returncode, 0)
# TODO: RUSTPYTHON
@unittest.expectedFailure
def test_int_max_str_digits(self):
code = "import sys; print(sys.flags.int_max_str_digits, sys.get_int_max_str_digits())"

View File

@@ -151,7 +151,7 @@ impl Default for Settings {
check_hash_pycs_mode: "default".to_owned(),
allow_external_library: cfg!(feature = "importlib"),
utf8_mode: 1,
int_max_str_digits: -1,
int_max_str_digits: 4300,
#[cfg(feature = "flame-it")]
profile_output: None,
#[cfg(feature = "flame-it")]