mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-02 19:39:49 +09:00
Merge branch 'RustPython:main' into developer-experiance-tweaks
This commit is contained in:
2
Lib/test/test_cmd_line.py
vendored
2
Lib/test/test_cmd_line.py
vendored
@@ -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())"
|
||||
|
||||
|
||||
@@ -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")]
|
||||
|
||||
Reference in New Issue
Block a user