diff --git a/src/python_minifier/__init__.py b/src/python_minifier/__init__.py index 9863b791..79753a73 100644 --- a/src/python_minifier/__init__.py +++ b/src/python_minifier/__init__.py @@ -228,6 +228,7 @@ def unparse(module): try: compare_ast(module, minified_module) except CompareError as compare_error: + print(printer.code) raise UnstableMinification(compare_error, '', printer.code) return printer.code diff --git a/src/python_minifier/f_string.py b/src/python_minifier/f_string.py index ae65a808..332a2546 100644 --- a/src/python_minifier/f_string.py +++ b/src/python_minifier/f_string.py @@ -290,6 +290,8 @@ def _literals(self): l += '\\n' elif c == '\r': l += '\\r' + elif c == '\\': + l += '\\\\' else: l += c @@ -301,8 +303,8 @@ def __str__(self): if self._s == '': return str(min(self.allowed_quotes, key=len)) * 2 - if '\0' in self._s or '\\' in self._s: - raise ValueError('Impossible to represent a %r character in f-string expression part') + if '\0' in self._s or ('\\' in self._s and not self.pep701): + raise ValueError('Impossible to represent a character in f-string expression part') if not self.pep701 and ('\n' in self._s or '\r' in self._s): if '"""' not in self.allowed_quotes and "'''" not in self.allowed_quotes: diff --git a/xtest/manifests/python3.12_test_manifest.yaml b/xtest/manifests/python3.12_test_manifest.yaml index 1e216608..e69de29b 100644 --- a/xtest/manifests/python3.12_test_manifest.yaml +++ b/xtest/manifests/python3.12_test_manifest.yaml @@ -1,5076 +0,0 @@ -/usr/local/lib/python3.12/test/leakers/test_ctypes.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/leakers/test_selftype.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/regrtestdata/import_from_tests/test_regrtest_a.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/regrtestdata/import_from_tests/test_regrtest_c.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test___all__.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test__locale.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test__opcode.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test__osx_support.py: [] -/usr/local/lib/python3.12/test/test__xxinterpchannels.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test__xxsubinterpreters.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_abc.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_abstract_numbers.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_aifc.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_argparse.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_array.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_asdl_parser.py: [] -/usr/local/lib/python3.12/test/test_ast.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_asyncgen.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_asyncio/test_base_events.py: [] -/usr/local/lib/python3.12/test/test_asyncio/test_buffered_proto.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_asyncio/test_context.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_asyncio/test_eager_task_factory.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_asyncio/test_events.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_asyncio/test_futures.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_asyncio/test_futures2.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_asyncio/test_locks.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_asyncio/test_pep492.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_asyncio/test_proactor_events.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_asyncio/test_protocols.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_asyncio/test_queues.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_asyncio/test_runners.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_asyncio/test_selector_events.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_asyncio/test_sendfile.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_asyncio/test_server.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_asyncio/test_sock_lowlevel.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_asyncio/test_ssl.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_asyncio/test_sslproto.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_asyncio/test_streams.py: [] -/usr/local/lib/python3.12/test/test_asyncio/test_subprocess.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_asyncio/test_taskgroups.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_asyncio/test_tasks.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_asyncio/test_threads.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_asyncio/test_timeouts.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_asyncio/test_transports.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_asyncio/test_unix_events.py: [] -/usr/local/lib/python3.12/test/test_asyncio/test_waitfor.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_asyncio/test_windows_events.py: [] -/usr/local/lib/python3.12/test/test_asyncio/test_windows_utils.py: [] -/usr/local/lib/python3.12/test/test_atexit.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_audioop.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_audit.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_augassign.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_base64.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_baseexception.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_bdb.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_bigaddrspace.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_bigmem.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_binascii.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_binop.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_bisect.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_bool.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_buffer.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_bufio.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_builtin.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_bytes.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_bz2.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_c_locale_coercion.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_calendar.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_call.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_capi/test_abstract.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_capi/test_bytearray.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_capi/test_bytes.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_capi/test_codecs.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_capi/test_complex.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_capi/test_dict.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_capi/test_eval_code_ex.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_capi/test_exceptions.py: [] -/usr/local/lib/python3.12/test/test_capi/test_float.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_capi/test_getargs.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_capi/test_immortal.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_capi/test_list.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_capi/test_long.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_capi/test_mem.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_capi/test_misc.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_capi/test_set.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_capi/test_structmembers.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_capi/test_sys.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_capi/test_unicode.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_capi/test_watchers.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_cgi.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_cgitb.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_charmapcodec.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_class.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_clinic.py: [] -/usr/local/lib/python3.12/test/test_cmath.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_cmd.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_cmd_line.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_cmd_line_script.py: [] -/usr/local/lib/python3.12/test/test_code.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_code_module.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_codeccallbacks.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_codecencodings_cn.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_codecencodings_hk.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_codecencodings_iso2022.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_codecencodings_jp.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_codecencodings_kr.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_codecencodings_tw.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_codecmaps_cn.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_codecmaps_hk.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_codecmaps_jp.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_codecmaps_kr.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_codecmaps_tw.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_codecs.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_codeop.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_collections.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_colorsys.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_compare.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_compile.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_compileall.py: [] -/usr/local/lib/python3.12/test/test_compiler_assemble.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_compiler_codegen.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_complex.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_configparser.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_contains.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_context.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_contextlib.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_contextlib_async.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_copy.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_copyreg.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_coroutines.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_cprofile.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_crashers.py: [] -/usr/local/lib/python3.12/test/test_crypt.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_csv.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_ctypes/test_anon.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_ctypes/test_array_in_pointer.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_ctypes/test_arrays.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_ctypes/test_as_parameter.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_ctypes/test_bitfields.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_ctypes/test_buffers.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_ctypes/test_bytes.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_ctypes/test_byteswap.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_ctypes/test_callbacks.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_ctypes/test_cast.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_ctypes/test_cfuncs.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_ctypes/test_checkretval.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_ctypes/test_delattr.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_ctypes/test_errno.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_ctypes/test_find.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_ctypes/test_frombuffer.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_ctypes/test_funcptr.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_ctypes/test_functions.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_ctypes/test_incomplete.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_ctypes/test_init.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_ctypes/test_internals.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_ctypes/test_keeprefs.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_ctypes/test_libc.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_ctypes/test_loading.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_ctypes/test_macholib.py: [] -/usr/local/lib/python3.12/test/test_ctypes/test_memfunctions.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_ctypes/test_numbers.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_ctypes/test_objects.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_ctypes/test_parameters.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_ctypes/test_pep3118.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_ctypes/test_pickling.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_ctypes/test_pointers.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_ctypes/test_prototypes.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_ctypes/test_python_api.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_ctypes/test_random_things.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_ctypes/test_refcounts.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_ctypes/test_repr.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_ctypes/test_returnfuncptrs.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_ctypes/test_simplesubclasses.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_ctypes/test_sizes.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_ctypes/test_slicing.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_ctypes/test_stringptr.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_ctypes/test_strings.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_ctypes/test_struct_fields.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_ctypes/test_structures.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_ctypes/test_unaligned_structures.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_ctypes/test_unicode.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_ctypes/test_values.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_ctypes/test_varsize_struct.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_ctypes/test_win32.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_ctypes/test_wintypes.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_curses.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_datetime.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_dbm.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_dbm_dumb.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_dbm_gnu.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_dbm_ndbm.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_decimal.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_decorators.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_defaultdict.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_deque.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_descr.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_descrtut.py: [] -/usr/local/lib/python3.12/test/test_devpoll.py: [] -/usr/local/lib/python3.12/test/test_dict.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_dict_version.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_dictcomps.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_dictviews.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_difflib.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_dis.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_doctest.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_doctest2.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_docxmlrpc.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_dtrace.py: [] -/usr/local/lib/python3.12/test/test_dynamic.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_dynamicclassattribute.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_eintr.py: [] -/usr/local/lib/python3.12/test/test_email/test__encoded_words.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_email/test__header_value_parser.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_email/test_asian_codecs.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_email/test_contentmanager.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_email/test_defect_handling.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_email/test_email.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_email/test_generator.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_email/test_headerregistry.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_email/test_inversion.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_email/test_message.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_email/test_parser.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_email/test_pickleable.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_email/test_policy.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_email/test_utils.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_embed.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_ensurepip.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_enum.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_enumerate.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_eof.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_epoll.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_errno.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_except_star.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_exception_group.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_exception_hierarchy.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_exception_variations.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_exceptions.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_extcall.py: [] -/usr/local/lib/python3.12/test/test_faulthandler.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_fcntl.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_file.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_file_eintr.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_filecmp.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_fileinput.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_fileio.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_fileutils.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_finalization.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_float.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_flufl.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_fnmatch.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_fork1.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_format.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_fractions.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_frame.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_frozen.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_fstring.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_ftplib.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_funcattrs.py: [] -/usr/local/lib/python3.12/test/test_functools.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_future_stmt/test_future.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_future_stmt/test_future_flags.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_future_stmt/test_future_multiple_features.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_future_stmt/test_future_multiple_imports.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_future_stmt/test_future_single_import.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_gc.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_gdb/test_backtrace.py: [] -/usr/local/lib/python3.12/test/test_gdb/test_cfunction.py: [] -/usr/local/lib/python3.12/test/test_gdb/test_cfunction_full.py: [] -/usr/local/lib/python3.12/test/test_gdb/test_misc.py: [] -/usr/local/lib/python3.12/test/test_gdb/test_pretty_print.py: [] -/usr/local/lib/python3.12/test/test_generator_stop.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_generators.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_genericalias.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_genericclass.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_genericpath.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_genexps.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_getopt.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_getpass.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_getpath.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_gettext.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_glob.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_global.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_grammar.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_graphlib.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_grp.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_gzip.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_hash.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_hashlib.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_heapq.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_hmac.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_html.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_htmlparser.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_http_cookiejar.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_http_cookies.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_httplib.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_httpservers.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_idle.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_imaplib.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_imghdr.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_importlib/builtin/test_finder.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_importlib/builtin/test_loader.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_importlib/extension/test_case_sensitivity.py: [] -/usr/local/lib/python3.12/test/test_importlib/extension/test_finder.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_importlib/extension/test_loader.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_importlib/extension/test_path_hook.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_importlib/frozen/test_finder.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_importlib/frozen/test_loader.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_importlib/import_/test___loader__.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_importlib/import_/test___package__.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_importlib/import_/test_api.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_importlib/import_/test_caching.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_importlib/import_/test_fromlist.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_importlib/import_/test_helpers.py: [] -/usr/local/lib/python3.12/test/test_importlib/import_/test_meta_path.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_importlib/import_/test_packages.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_importlib/import_/test_path.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_importlib/import_/test_relative_imports.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_importlib/resources/test_compatibilty_files.py: [] -/usr/local/lib/python3.12/test/test_importlib/resources/test_contents.py: [] -/usr/local/lib/python3.12/test/test_importlib/resources/test_custom.py: [] -/usr/local/lib/python3.12/test/test_importlib/resources/test_files.py: [] -/usr/local/lib/python3.12/test/test_importlib/resources/test_open.py: [] -/usr/local/lib/python3.12/test/test_importlib/resources/test_path.py: [] -/usr/local/lib/python3.12/test/test_importlib/resources/test_read.py: [] -/usr/local/lib/python3.12/test/test_importlib/resources/test_reader.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_importlib/resources/test_resource.py: [] -/usr/local/lib/python3.12/test/test_importlib/source/test_case_sensitivity.py: [] -/usr/local/lib/python3.12/test/test_importlib/source/test_file_loader.py: [] -/usr/local/lib/python3.12/test/test_importlib/source/test_finder.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_importlib/source/test_path_hook.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_importlib/source/test_source_encoding.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_importlib/test_abc.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_importlib/test_api.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_importlib/test_lazy.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_importlib/test_locks.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_importlib/test_main.py: [] -/usr/local/lib/python3.12/test/test_importlib/test_metadata_api.py: [] -/usr/local/lib/python3.12/test/test_importlib/test_namespace_pkgs.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_importlib/test_pkg_import.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_importlib/test_spec.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_importlib/test_threaded_import.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_importlib/test_util.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_importlib/test_windows.py: [] -/usr/local/lib/python3.12/test/test_importlib/test_zip.py: [] -/usr/local/lib/python3.12/test/test_index.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_inspect/test_inspect.py: [] -/usr/local/lib/python3.12/test/test_int.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_int_literal.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_interpreters.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_io.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_ioctl.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_ipaddress.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_isinstance.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_iter.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_iterlen.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_itertools.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_json/test_decode.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_json/test_default.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_json/test_dump.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_json/test_encode_basestring_ascii.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_json/test_enum.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_json/test_fail.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_json/test_float.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_json/test_indent.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_json/test_pass1.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_json/test_pass2.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_json/test_pass3.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_json/test_recursion.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_json/test_scanstring.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_json/test_separators.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_json/test_speedups.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_json/test_tool.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_json/test_unicode.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_keyword.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_keywordonlyarg.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_kqueue.py: [] -/usr/local/lib/python3.12/test/test_largefile.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_launcher.py: [] -/usr/local/lib/python3.12/test/test_lib2to3/test_all_fixers.py: [] -/usr/local/lib/python3.12/test/test_lib2to3/test_fixers.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_lib2to3/test_main.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_lib2to3/test_parser.py: [] -/usr/local/lib/python3.12/test/test_lib2to3/test_pytree.py: [] -/usr/local/lib/python3.12/test/test_lib2to3/test_refactor.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_lib2to3/test_util.py: [] -/usr/local/lib/python3.12/test/test_linecache.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_list.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_listcomps.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_lltrace.py: [] -/usr/local/lib/python3.12/test/test_locale.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_logging.py: [] -/usr/local/lib/python3.12/test/test_long.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_longexp.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_lzma.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_mailbox.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_mailcap.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_marshal.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_math.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_math_property.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_memoryio.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_memoryview.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_metaclass.py: [] -/usr/local/lib/python3.12/test/test_mimetypes.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_minidom.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_mmap.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_modulefinder.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_monitoring.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_msilib.py: [] -/usr/local/lib/python3.12/test/test_multibytecodec.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_multiprocessing_main_handling.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_named_expressions.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_netrc.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_nis.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_nntplib.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_ntpath.py: [] -/usr/local/lib/python3.12/test/test_numeric_tower.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_opcache.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_opcodes.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_openpty.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_operator.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_optparse.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_ordered_dict.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_os.py: [] -/usr/local/lib/python3.12/test/test_ossaudiodev.py: [] -/usr/local/lib/python3.12/test/test_osx_env.py: [] -/usr/local/lib/python3.12/test/test_pathlib.py: [] -/usr/local/lib/python3.12/test/test_patma.py: [] -/usr/local/lib/python3.12/test/test_pdb.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_peepholer.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_peg_generator/test_c_parser.py: [] -/usr/local/lib/python3.12/test/test_peg_generator/test_first_sets.py: [] -/usr/local/lib/python3.12/test/test_peg_generator/test_grammar_validator.py: [] -/usr/local/lib/python3.12/test/test_peg_generator/test_pegen.py: [] -/usr/local/lib/python3.12/test/test_pep646_syntax.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_perf_profiler.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_perfmaps.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_pickle.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_picklebuffer.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_pickletools.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_pipes.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_pkg.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_pkgutil.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_platform.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_plistlib.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_poll.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_popen.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_poplib.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_positional_only_arg.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_posix.py: [] -/usr/local/lib/python3.12/test/test_posixpath.py: [] -/usr/local/lib/python3.12/test/test_pow.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_pprint.py: [] -/usr/local/lib/python3.12/test/test_print.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_profile.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_property.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_pstats.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_pty.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_pulldom.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_pwd.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_py_compile.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_pyclbr.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_pydoc.py: [] -/usr/local/lib/python3.12/test/test_pyexpat.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_queue.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_quopri.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_raise.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_random.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_range.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_re.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_readline.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_regrtest.py: [] -/usr/local/lib/python3.12/test/test_repl.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_reprlib.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_resource.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_richcmp.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_rlcompleter.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_robotparser.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_runpy.py: [] -/usr/local/lib/python3.12/test/test_sax.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_sched.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_scope.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_script_helper.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_secrets.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_select.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_selectors.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_set.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_setcomps.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_shelve.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_shlex.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_shutil.py: [] -/usr/local/lib/python3.12/test/test_signal.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_site.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_slice.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_smtplib.py: [] -/usr/local/lib/python3.12/test/test_smtpnet.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_sndhdr.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_socket.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_socketserver.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_sort.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_source_encoding.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_spwd.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_sqlite3/test_backup.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_sqlite3/test_cli.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_sqlite3/test_dbapi.py: [] -/usr/local/lib/python3.12/test/test_sqlite3/test_dump.py: [] -/usr/local/lib/python3.12/test/test_sqlite3/test_factory.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_sqlite3/test_hooks.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_sqlite3/test_regression.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_sqlite3/test_transactions.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_sqlite3/test_types.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_sqlite3/test_userfunctions.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_ssl.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_stable_abi_ctypes.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_startfile.py: [] -/usr/local/lib/python3.12/test/test_stat.py: [] -/usr/local/lib/python3.12/test/test_statistics.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_strftime.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_string.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_string_literals.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_stringprep.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_strptime.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_strtod.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_struct.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_structseq.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_subclassinit.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_subprocess.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_sunau.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_sundry.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_super.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_support.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_symtable.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_syntax.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_sys.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_sys_setprofile.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_sys_settrace.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_sysconfig.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_syslog.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_tabnanny.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_tarfile.py: [] -/usr/local/lib/python3.12/test/test_tcl.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_telnetlib.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_tempfile.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_termios.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_textwrap.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_thread.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_threadedtempfile.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_threading.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_threading_local.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_threadsignals.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_time.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_timeit.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_timeout.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_tix.py: [] -/usr/local/lib/python3.12/test/test_tkinter/test_colorchooser.py: [] -/usr/local/lib/python3.12/test/test_tkinter/test_font.py: [] -/usr/local/lib/python3.12/test/test_tkinter/test_geometry_managers.py: [] -/usr/local/lib/python3.12/test/test_tkinter/test_images.py: [] -/usr/local/lib/python3.12/test/test_tkinter/test_loadtk.py: [] -/usr/local/lib/python3.12/test/test_tkinter/test_messagebox.py: [] -/usr/local/lib/python3.12/test/test_tkinter/test_misc.py: [] -/usr/local/lib/python3.12/test/test_tkinter/test_simpledialog.py: [] -/usr/local/lib/python3.12/test/test_tkinter/test_text.py: [] -/usr/local/lib/python3.12/test/test_tkinter/test_variables.py: [] -/usr/local/lib/python3.12/test/test_tkinter/test_widgets.py: [] -/usr/local/lib/python3.12/test/test_tokenize.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_tomllib/test_data.py: [] -/usr/local/lib/python3.12/test/test_tomllib/test_error.py: [] -/usr/local/lib/python3.12/test/test_tomllib/test_misc.py: [] -/usr/local/lib/python3.12/test/test_tools/test_freeze.py: [] -/usr/local/lib/python3.12/test/test_tools/test_i18n.py: [] -/usr/local/lib/python3.12/test/test_tools/test_reindent.py: [] -/usr/local/lib/python3.12/test/test_tools/test_sundry.py: [] -/usr/local/lib/python3.12/test/test_trace.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_traceback.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_tracemalloc.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_ttk/test_extensions.py: [] -/usr/local/lib/python3.12/test/test_ttk/test_style.py: [] -/usr/local/lib/python3.12/test/test_ttk/test_widgets.py: [] -/usr/local/lib/python3.12/test/test_ttk_textonly.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_tty.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_tuple.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_turtle.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_type_aliases.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_type_annotations.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_type_cache.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_type_comments.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_type_params.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_typechecks.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_types.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_typing.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_ucn.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_unary.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_unicode.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_unicode_file.py: [] -/usr/local/lib/python3.12/test/test_unicode_file_functions.py: [] -/usr/local/lib/python3.12/test/test_unicode_identifiers.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_unicodedata.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_unittest/test_assertions.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_unittest/test_async_case.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_unittest/test_break.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_unittest/test_case.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_unittest/test_discovery.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_unittest/test_functiontestcase.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_unittest/test_loader.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_unittest/test_program.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_unittest/test_result.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_unittest/test_runner.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_unittest/test_setups.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_unittest/test_skipping.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_unittest/test_suite.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_univnewlines.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_unpack.py: [] -/usr/local/lib/python3.12/test/test_unpack_ex.py: [] -/usr/local/lib/python3.12/test/test_unparse.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_urllib.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_urllib2.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_urllib2_localnet.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_urllib2net.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_urllib_response.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_urllibnet.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_urlparse.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_userdict.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_userlist.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_userstring.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_utf8_mode.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_utf8source.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_uu.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_uuid.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_venv.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_wait3.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_wait4.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_wave.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_weakref.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_weakset.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_webbrowser.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_winconsoleio.py: [] -/usr/local/lib/python3.12/test/test_winreg.py: [] -/usr/local/lib/python3.12/test/test_winsound.py: [] -/usr/local/lib/python3.12/test/test_with.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_wmi.py: [] -/usr/local/lib/python3.12/test/test_wsgiref.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_xdrlib.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_xml_dom_minicompat.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_xml_etree.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_xml_etree_c.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_xmlrpc.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_xmlrpc_net.py: [] -/usr/local/lib/python3.12/test/test_xxlimited.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_xxtestfuzz.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_yield_from.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_zipapp.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_zipfile/_path/test_complexity.py: [] -/usr/local/lib/python3.12/test/test_zipfile/_path/test_path.py: [] -/usr/local/lib/python3.12/test/test_zipfile/test_core.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_zipfile64.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_zipimport.py: [] -/usr/local/lib/python3.12/test/test_zipimport_support.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_zlib.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_zoneinfo/test_zoneinfo.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true -/usr/local/lib/python3.12/test/test_zoneinfo/test_zoneinfo_property.py: -- options: {} -- options: - rename_globals: true -- options: - remove_literal_statements: true -- options: - remove_literal_statements: true - rename_globals: true