├── .codecov.yml ├── .github ├── SECURITY.md ├── dependabot.yml └── workflows │ ├── codeql-analysis.yml │ ├── docs.yml │ ├── lint.yml │ ├── packaging.yml │ └── tests.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yml ├── .vscode └── settings.json ├── CHANGELOG.rst ├── CONTRIBUTING.rst ├── LICENSE ├── README.md ├── docs ├── Makefile ├── _static │ ├── css │ │ └── loguru.css │ ├── img │ │ ├── demo.gif │ │ ├── logo.png │ │ ├── logo.svg │ │ └── sadhu.svg │ └── js │ │ └── copybutton.js ├── _templates │ ├── breadcrumbs.html │ └── layout.html ├── api.rst ├── api │ ├── logger.rst │ ├── type_hints.rst │ └── type_hints_source.rst ├── conf.py ├── index.rst ├── overview.rst ├── project.rst ├── project │ ├── changelog.rst │ ├── contributing.rst │ └── license.rst ├── resources.rst └── resources │ ├── migration.rst │ ├── recipes.rst │ └── troubleshooting.rst ├── loguru ├── __init__.py ├── __init__.pyi ├── _asyncio_loop.py ├── _better_exceptions.py ├── _colorama.py ├── _colorizer.py ├── _contextvars.py ├── _ctime_functions.py ├── _datetime.py ├── _defaults.py ├── _error_interceptor.py ├── _file_sink.py ├── _filters.py ├── _get_frame.py ├── _handler.py ├── _locks_machinery.py ├── _logger.py ├── _recattrs.py ├── _simple_sinks.py ├── _string_parsers.py └── py.typed ├── pyproject.toml ├── tests ├── __init__.py ├── conftest.py ├── exceptions │ ├── output │ │ ├── backtrace │ │ │ ├── chained_expression_direct.txt │ │ │ ├── chained_expression_indirect.txt │ │ │ ├── chaining_first.txt │ │ │ ├── chaining_second.txt │ │ │ ├── chaining_third.txt │ │ │ ├── enqueue.txt │ │ │ ├── enqueue_with_others_handlers.txt │ │ │ ├── frame_values_backward.txt │ │ │ ├── frame_values_forward.txt │ │ │ ├── function.txt │ │ │ ├── head_recursion.txt │ │ │ ├── missing_attributes_traceback_objects.txt │ │ │ ├── nested.txt │ │ │ ├── nested_chained_catch_up.txt │ │ │ ├── nested_decorator_catch_up.txt │ │ │ ├── nested_explicit_catch_up.txt │ │ │ ├── nested_wrapping.txt │ │ │ ├── no_tb.txt │ │ │ ├── not_enough_arguments.txt │ │ │ ├── raising_recursion.txt │ │ │ ├── suppressed_expression_direct.txt │ │ │ ├── suppressed_expression_indirect.txt │ │ │ ├── tail_recursion.txt │ │ │ └── too_many_arguments.txt │ │ ├── diagnose │ │ │ ├── assertion_error.txt │ │ │ ├── assertion_error_custom.txt │ │ │ ├── assertion_error_in_string.txt │ │ │ ├── attributes.txt │ │ │ ├── chained_both.txt │ │ │ ├── encoding.txt │ │ │ ├── global_variable.txt │ │ │ ├── indentation_error.txt │ │ │ ├── keyword_argument.txt │ │ │ ├── multilines_repr.txt │ │ │ ├── no_error_message.txt │ │ │ ├── parenthesis.txt │ │ │ ├── source_multilines.txt │ │ │ ├── source_strings.txt │ │ │ ├── syntax_error.txt │ │ │ ├── syntax_highlighting.txt │ │ │ ├── truncating.txt │ │ │ └── unprintable_object.txt │ │ ├── modern │ │ │ ├── decorate_async_generator.txt │ │ │ ├── exception_formatting_async_generator.txt │ │ │ ├── exception_group_catch.txt │ │ │ ├── f_string.txt │ │ │ ├── grouped_as_cause_and_context.txt │ │ │ ├── grouped_max_depth.txt │ │ │ ├── grouped_max_length.txt │ │ │ ├── grouped_nested.txt │ │ │ ├── grouped_simple.txt │ │ │ ├── grouped_with_cause_and_context.txt │ │ │ ├── match_statement.txt │ │ │ ├── notes.txt │ │ │ ├── positional_only_argument.txt │ │ │ ├── type_hints.txt │ │ │ └── walrus_operator.txt │ │ ├── others │ │ │ ├── assertionerror_without_traceback.txt │ │ │ ├── broken_but_decorated_repr.txt │ │ │ ├── catch_as_context_manager.txt │ │ │ ├── catch_as_decorator_with_parentheses.txt │ │ │ ├── catch_as_decorator_without_parentheses.txt │ │ │ ├── catch_as_function.txt │ │ │ ├── catch_message.txt │ │ │ ├── exception_formatting_coroutine.txt │ │ │ ├── exception_formatting_function.txt │ │ │ ├── exception_formatting_generator.txt │ │ │ ├── exception_in_property.txt │ │ │ ├── handler_formatting_with_context_manager.txt │ │ │ ├── handler_formatting_with_decorator.txt │ │ │ ├── level_name.txt │ │ │ ├── level_number.txt │ │ │ ├── message_formatting_with_context_manager.txt │ │ │ ├── message_formatting_with_decorator.txt │ │ │ ├── nested_with_reraise.txt │ │ │ ├── one_liner_recursion.txt │ │ │ ├── recursion_error.txt │ │ │ ├── repeated_lines.txt │ │ │ ├── syntaxerror_without_traceback.txt │ │ │ ├── sys_tracebacklimit.txt │ │ │ ├── sys_tracebacklimit_negative.txt │ │ │ ├── sys_tracebacklimit_none.txt │ │ │ ├── sys_tracebacklimit_unset.txt │ │ │ └── zerodivisionerror_without_traceback.txt │ │ └── ownership │ │ │ ├── assertion_from_lib.txt │ │ │ ├── assertion_from_local.txt │ │ │ ├── callback.txt │ │ │ ├── catch_decorator.txt │ │ │ ├── catch_decorator_from_lib.txt │ │ │ ├── decorated_callback.txt │ │ │ ├── direct.txt │ │ │ ├── indirect.txt │ │ │ ├── string_lib.txt │ │ │ ├── string_source.txt │ │ │ └── syntaxerror.txt │ └── source │ │ ├── backtrace │ │ ├── chained_expression_direct.py │ │ ├── chained_expression_indirect.py │ │ ├── chaining_first.py │ │ ├── chaining_second.py │ │ ├── chaining_third.py │ │ ├── enqueue.py │ │ ├── enqueue_with_others_handlers.py │ │ ├── frame_values_backward.py │ │ ├── frame_values_forward.py │ │ ├── function.py │ │ ├── head_recursion.py │ │ ├── missing_attributes_traceback_objects.py │ │ ├── nested.py │ │ ├── nested_chained_catch_up.py │ │ ├── nested_decorator_catch_up.py │ │ ├── nested_explicit_catch_up.py │ │ ├── nested_wrapping.py │ │ ├── no_tb.py │ │ ├── not_enough_arguments.py │ │ ├── raising_recursion.py │ │ ├── suppressed_expression_direct.py │ │ ├── suppressed_expression_indirect.py │ │ ├── tail_recursion.py │ │ └── too_many_arguments.py │ │ ├── diagnose │ │ ├── assertion_error.py │ │ ├── assertion_error_custom.py │ │ ├── assertion_error_in_string.py │ │ ├── attributes.py │ │ ├── chained_both.py │ │ ├── encoding.py │ │ ├── global_variable.py │ │ ├── indentation_error.py │ │ ├── keyword_argument.py │ │ ├── multilines_repr.py │ │ ├── no_error_message.py │ │ ├── parenthesis.py │ │ ├── source_multilines.py │ │ ├── source_strings.py │ │ ├── syntax_error.py │ │ ├── syntax_highlighting.py │ │ ├── truncating.py │ │ └── unprintable_object.py │ │ ├── modern │ │ ├── decorate_async_generator.py │ │ ├── exception_formatting_async_generator.py │ │ ├── exception_group_catch.py │ │ ├── f_string.py │ │ ├── grouped_as_cause_and_context.py │ │ ├── grouped_max_depth.py │ │ ├── grouped_max_length.py │ │ ├── grouped_nested.py │ │ ├── grouped_simple.py │ │ ├── grouped_with_cause_and_context.py │ │ ├── match_statement.py │ │ ├── notes.py │ │ ├── positional_only_argument.py │ │ ├── type_hints.py │ │ └── walrus_operator.py │ │ ├── others │ │ ├── assertionerror_without_traceback.py │ │ ├── broken_but_decorated_repr.py │ │ ├── catch_as_context_manager.py │ │ ├── catch_as_decorator_with_parentheses.py │ │ ├── catch_as_decorator_without_parentheses.py │ │ ├── catch_as_function.py │ │ ├── catch_message.py │ │ ├── exception_formatting_coroutine.py │ │ ├── exception_formatting_function.py │ │ ├── exception_formatting_generator.py │ │ ├── exception_in_property.py │ │ ├── handler_formatting_with_context_manager.py │ │ ├── handler_formatting_with_decorator.py │ │ ├── level_name.py │ │ ├── level_number.py │ │ ├── message_formatting_with_context_manager.py │ │ ├── message_formatting_with_decorator.py │ │ ├── nested_with_reraise.py │ │ ├── one_liner_recursion.py │ │ ├── recursion_error.py │ │ ├── repeated_lines.py │ │ ├── syntaxerror_without_traceback.py │ │ ├── sys_tracebacklimit.py │ │ ├── sys_tracebacklimit_negative.py │ │ ├── sys_tracebacklimit_none.py │ │ ├── sys_tracebacklimit_unset.py │ │ └── zerodivisionerror_without_traceback.py │ │ └── ownership │ │ ├── _init.py │ │ ├── assertion_from_lib.py │ │ ├── assertion_from_local.py │ │ ├── callback.py │ │ ├── catch_decorator.py │ │ ├── catch_decorator_from_lib.py │ │ ├── decorated_callback.py │ │ ├── direct.py │ │ ├── indirect.py │ │ ├── string_lib.py │ │ ├── string_source.py │ │ ├── syntaxerror.py │ │ └── usersite │ │ └── somelib │ │ └── __init__.py ├── test_activation.py ├── test_add_option_backtrace.py ├── test_add_option_catch.py ├── test_add_option_colorize.py ├── test_add_option_context.py ├── test_add_option_diagnose.py ├── test_add_option_enqueue.py ├── test_add_option_filter.py ├── test_add_option_format.py ├── test_add_option_kwargs.py ├── test_add_option_level.py ├── test_add_option_serialize.py ├── test_add_sinks.py ├── test_ansimarkup_basic.py ├── test_ansimarkup_extended.py ├── test_bind.py ├── test_colorama.py ├── test_configure.py ├── test_contextualize.py ├── test_coroutine_sink.py ├── test_datetime.py ├── test_deepcopy.py ├── test_defaults.py ├── test_exceptions_catch.py ├── test_exceptions_formatting.py ├── test_filesink_compression.py ├── test_filesink_delay.py ├── test_filesink_permissions.py ├── test_filesink_retention.py ├── test_filesink_rotation.py ├── test_filesink_watch.py ├── test_formatting.py ├── test_get_frame.py ├── test_interception.py ├── test_levels.py ├── test_locks.py ├── test_multiprocessing.py ├── test_opt.py ├── test_parse.py ├── test_patch.py ├── test_pickling.py ├── test_propagation.py ├── test_recattr.py ├── test_reinstall.py ├── test_remove.py ├── test_repr.py ├── test_standard_handler.py ├── test_threading.py ├── test_type_hinting.py └── typesafety │ └── test_logger.yml └── tox.ini /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/packaging.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/.github/workflows/packaging.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/css/loguru.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/docs/_static/css/loguru.css -------------------------------------------------------------------------------- /docs/_static/img/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/docs/_static/img/demo.gif -------------------------------------------------------------------------------- /docs/_static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/docs/_static/img/logo.png -------------------------------------------------------------------------------- /docs/_static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/docs/_static/img/logo.svg -------------------------------------------------------------------------------- /docs/_static/img/sadhu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/docs/_static/img/sadhu.svg -------------------------------------------------------------------------------- /docs/_static/js/copybutton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/docs/_static/js/copybutton.js -------------------------------------------------------------------------------- /docs/_templates/breadcrumbs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/docs/_templates/breadcrumbs.html -------------------------------------------------------------------------------- /docs/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/docs/_templates/layout.html -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/api/logger.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/docs/api/logger.rst -------------------------------------------------------------------------------- /docs/api/type_hints.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/docs/api/type_hints.rst -------------------------------------------------------------------------------- /docs/api/type_hints_source.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/docs/api/type_hints_source.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/docs/overview.rst -------------------------------------------------------------------------------- /docs/project.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/docs/project.rst -------------------------------------------------------------------------------- /docs/project/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/docs/project/changelog.rst -------------------------------------------------------------------------------- /docs/project/contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/docs/project/contributing.rst -------------------------------------------------------------------------------- /docs/project/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/docs/project/license.rst -------------------------------------------------------------------------------- /docs/resources.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/docs/resources.rst -------------------------------------------------------------------------------- /docs/resources/migration.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/docs/resources/migration.rst -------------------------------------------------------------------------------- /docs/resources/recipes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/docs/resources/recipes.rst -------------------------------------------------------------------------------- /docs/resources/troubleshooting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/docs/resources/troubleshooting.rst -------------------------------------------------------------------------------- /loguru/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/loguru/__init__.py -------------------------------------------------------------------------------- /loguru/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/loguru/__init__.pyi -------------------------------------------------------------------------------- /loguru/_asyncio_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/loguru/_asyncio_loop.py -------------------------------------------------------------------------------- /loguru/_better_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/loguru/_better_exceptions.py -------------------------------------------------------------------------------- /loguru/_colorama.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/loguru/_colorama.py -------------------------------------------------------------------------------- /loguru/_colorizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/loguru/_colorizer.py -------------------------------------------------------------------------------- /loguru/_contextvars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/loguru/_contextvars.py -------------------------------------------------------------------------------- /loguru/_ctime_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/loguru/_ctime_functions.py -------------------------------------------------------------------------------- /loguru/_datetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/loguru/_datetime.py -------------------------------------------------------------------------------- /loguru/_defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/loguru/_defaults.py -------------------------------------------------------------------------------- /loguru/_error_interceptor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/loguru/_error_interceptor.py -------------------------------------------------------------------------------- /loguru/_file_sink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/loguru/_file_sink.py -------------------------------------------------------------------------------- /loguru/_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/loguru/_filters.py -------------------------------------------------------------------------------- /loguru/_get_frame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/loguru/_get_frame.py -------------------------------------------------------------------------------- /loguru/_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/loguru/_handler.py -------------------------------------------------------------------------------- /loguru/_locks_machinery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/loguru/_locks_machinery.py -------------------------------------------------------------------------------- /loguru/_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/loguru/_logger.py -------------------------------------------------------------------------------- /loguru/_recattrs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/loguru/_recattrs.py -------------------------------------------------------------------------------- /loguru/_simple_sinks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/loguru/_simple_sinks.py -------------------------------------------------------------------------------- /loguru/_string_parsers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/loguru/_string_parsers.py -------------------------------------------------------------------------------- /loguru/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/exceptions/output/backtrace/chained_expression_direct.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/backtrace/chained_expression_direct.txt -------------------------------------------------------------------------------- /tests/exceptions/output/backtrace/chained_expression_indirect.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/backtrace/chained_expression_indirect.txt -------------------------------------------------------------------------------- /tests/exceptions/output/backtrace/chaining_first.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/backtrace/chaining_first.txt -------------------------------------------------------------------------------- /tests/exceptions/output/backtrace/chaining_second.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/backtrace/chaining_second.txt -------------------------------------------------------------------------------- /tests/exceptions/output/backtrace/chaining_third.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/backtrace/chaining_third.txt -------------------------------------------------------------------------------- /tests/exceptions/output/backtrace/enqueue.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/backtrace/enqueue.txt -------------------------------------------------------------------------------- /tests/exceptions/output/backtrace/enqueue_with_others_handlers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/backtrace/enqueue_with_others_handlers.txt -------------------------------------------------------------------------------- /tests/exceptions/output/backtrace/frame_values_backward.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/backtrace/frame_values_backward.txt -------------------------------------------------------------------------------- /tests/exceptions/output/backtrace/frame_values_forward.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/backtrace/frame_values_forward.txt -------------------------------------------------------------------------------- /tests/exceptions/output/backtrace/function.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/backtrace/function.txt -------------------------------------------------------------------------------- /tests/exceptions/output/backtrace/head_recursion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/backtrace/head_recursion.txt -------------------------------------------------------------------------------- /tests/exceptions/output/backtrace/missing_attributes_traceback_objects.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/backtrace/missing_attributes_traceback_objects.txt -------------------------------------------------------------------------------- /tests/exceptions/output/backtrace/nested.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/backtrace/nested.txt -------------------------------------------------------------------------------- /tests/exceptions/output/backtrace/nested_chained_catch_up.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/backtrace/nested_chained_catch_up.txt -------------------------------------------------------------------------------- /tests/exceptions/output/backtrace/nested_decorator_catch_up.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/backtrace/nested_decorator_catch_up.txt -------------------------------------------------------------------------------- /tests/exceptions/output/backtrace/nested_explicit_catch_up.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/backtrace/nested_explicit_catch_up.txt -------------------------------------------------------------------------------- /tests/exceptions/output/backtrace/nested_wrapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/backtrace/nested_wrapping.txt -------------------------------------------------------------------------------- /tests/exceptions/output/backtrace/no_tb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/backtrace/no_tb.txt -------------------------------------------------------------------------------- /tests/exceptions/output/backtrace/not_enough_arguments.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/backtrace/not_enough_arguments.txt -------------------------------------------------------------------------------- /tests/exceptions/output/backtrace/raising_recursion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/backtrace/raising_recursion.txt -------------------------------------------------------------------------------- /tests/exceptions/output/backtrace/suppressed_expression_direct.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/backtrace/suppressed_expression_direct.txt -------------------------------------------------------------------------------- /tests/exceptions/output/backtrace/suppressed_expression_indirect.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/backtrace/suppressed_expression_indirect.txt -------------------------------------------------------------------------------- /tests/exceptions/output/backtrace/tail_recursion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/backtrace/tail_recursion.txt -------------------------------------------------------------------------------- /tests/exceptions/output/backtrace/too_many_arguments.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/backtrace/too_many_arguments.txt -------------------------------------------------------------------------------- /tests/exceptions/output/diagnose/assertion_error.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/diagnose/assertion_error.txt -------------------------------------------------------------------------------- /tests/exceptions/output/diagnose/assertion_error_custom.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/diagnose/assertion_error_custom.txt -------------------------------------------------------------------------------- /tests/exceptions/output/diagnose/assertion_error_in_string.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/diagnose/assertion_error_in_string.txt -------------------------------------------------------------------------------- /tests/exceptions/output/diagnose/attributes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/diagnose/attributes.txt -------------------------------------------------------------------------------- /tests/exceptions/output/diagnose/chained_both.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/diagnose/chained_both.txt -------------------------------------------------------------------------------- /tests/exceptions/output/diagnose/encoding.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/diagnose/encoding.txt -------------------------------------------------------------------------------- /tests/exceptions/output/diagnose/global_variable.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/diagnose/global_variable.txt -------------------------------------------------------------------------------- /tests/exceptions/output/diagnose/indentation_error.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/diagnose/indentation_error.txt -------------------------------------------------------------------------------- /tests/exceptions/output/diagnose/keyword_argument.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/diagnose/keyword_argument.txt -------------------------------------------------------------------------------- /tests/exceptions/output/diagnose/multilines_repr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/diagnose/multilines_repr.txt -------------------------------------------------------------------------------- /tests/exceptions/output/diagnose/no_error_message.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/diagnose/no_error_message.txt -------------------------------------------------------------------------------- /tests/exceptions/output/diagnose/parenthesis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/diagnose/parenthesis.txt -------------------------------------------------------------------------------- /tests/exceptions/output/diagnose/source_multilines.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/diagnose/source_multilines.txt -------------------------------------------------------------------------------- /tests/exceptions/output/diagnose/source_strings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/diagnose/source_strings.txt -------------------------------------------------------------------------------- /tests/exceptions/output/diagnose/syntax_error.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/diagnose/syntax_error.txt -------------------------------------------------------------------------------- /tests/exceptions/output/diagnose/syntax_highlighting.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/diagnose/syntax_highlighting.txt -------------------------------------------------------------------------------- /tests/exceptions/output/diagnose/truncating.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/diagnose/truncating.txt -------------------------------------------------------------------------------- /tests/exceptions/output/diagnose/unprintable_object.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/diagnose/unprintable_object.txt -------------------------------------------------------------------------------- /tests/exceptions/output/modern/decorate_async_generator.txt: -------------------------------------------------------------------------------- 1 | Done 2 | -------------------------------------------------------------------------------- /tests/exceptions/output/modern/exception_formatting_async_generator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/modern/exception_formatting_async_generator.txt -------------------------------------------------------------------------------- /tests/exceptions/output/modern/exception_group_catch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/modern/exception_group_catch.txt -------------------------------------------------------------------------------- /tests/exceptions/output/modern/f_string.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/modern/f_string.txt -------------------------------------------------------------------------------- /tests/exceptions/output/modern/grouped_as_cause_and_context.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/modern/grouped_as_cause_and_context.txt -------------------------------------------------------------------------------- /tests/exceptions/output/modern/grouped_max_depth.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/modern/grouped_max_depth.txt -------------------------------------------------------------------------------- /tests/exceptions/output/modern/grouped_max_length.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/modern/grouped_max_length.txt -------------------------------------------------------------------------------- /tests/exceptions/output/modern/grouped_nested.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/modern/grouped_nested.txt -------------------------------------------------------------------------------- /tests/exceptions/output/modern/grouped_simple.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/modern/grouped_simple.txt -------------------------------------------------------------------------------- /tests/exceptions/output/modern/grouped_with_cause_and_context.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/modern/grouped_with_cause_and_context.txt -------------------------------------------------------------------------------- /tests/exceptions/output/modern/match_statement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/modern/match_statement.txt -------------------------------------------------------------------------------- /tests/exceptions/output/modern/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/modern/notes.txt -------------------------------------------------------------------------------- /tests/exceptions/output/modern/positional_only_argument.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/modern/positional_only_argument.txt -------------------------------------------------------------------------------- /tests/exceptions/output/modern/type_hints.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/modern/type_hints.txt -------------------------------------------------------------------------------- /tests/exceptions/output/modern/walrus_operator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/modern/walrus_operator.txt -------------------------------------------------------------------------------- /tests/exceptions/output/others/assertionerror_without_traceback.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/others/assertionerror_without_traceback.txt -------------------------------------------------------------------------------- /tests/exceptions/output/others/broken_but_decorated_repr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/others/broken_but_decorated_repr.txt -------------------------------------------------------------------------------- /tests/exceptions/output/others/catch_as_context_manager.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/others/catch_as_context_manager.txt -------------------------------------------------------------------------------- /tests/exceptions/output/others/catch_as_decorator_with_parentheses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/others/catch_as_decorator_with_parentheses.txt -------------------------------------------------------------------------------- /tests/exceptions/output/others/catch_as_decorator_without_parentheses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/others/catch_as_decorator_without_parentheses.txt -------------------------------------------------------------------------------- /tests/exceptions/output/others/catch_as_function.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/others/catch_as_function.txt -------------------------------------------------------------------------------- /tests/exceptions/output/others/catch_message.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/others/catch_message.txt -------------------------------------------------------------------------------- /tests/exceptions/output/others/exception_formatting_coroutine.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/others/exception_formatting_coroutine.txt -------------------------------------------------------------------------------- /tests/exceptions/output/others/exception_formatting_function.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/others/exception_formatting_function.txt -------------------------------------------------------------------------------- /tests/exceptions/output/others/exception_formatting_generator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/others/exception_formatting_generator.txt -------------------------------------------------------------------------------- /tests/exceptions/output/others/exception_in_property.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/others/exception_in_property.txt -------------------------------------------------------------------------------- /tests/exceptions/output/others/handler_formatting_with_context_manager.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/others/handler_formatting_with_context_manager.txt -------------------------------------------------------------------------------- /tests/exceptions/output/others/handler_formatting_with_decorator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/others/handler_formatting_with_decorator.txt -------------------------------------------------------------------------------- /tests/exceptions/output/others/level_name.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/others/level_name.txt -------------------------------------------------------------------------------- /tests/exceptions/output/others/level_number.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/others/level_number.txt -------------------------------------------------------------------------------- /tests/exceptions/output/others/message_formatting_with_context_manager.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/others/message_formatting_with_context_manager.txt -------------------------------------------------------------------------------- /tests/exceptions/output/others/message_formatting_with_decorator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/others/message_formatting_with_decorator.txt -------------------------------------------------------------------------------- /tests/exceptions/output/others/nested_with_reraise.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/others/nested_with_reraise.txt -------------------------------------------------------------------------------- /tests/exceptions/output/others/one_liner_recursion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/others/one_liner_recursion.txt -------------------------------------------------------------------------------- /tests/exceptions/output/others/recursion_error.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/others/recursion_error.txt -------------------------------------------------------------------------------- /tests/exceptions/output/others/repeated_lines.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/others/repeated_lines.txt -------------------------------------------------------------------------------- /tests/exceptions/output/others/syntaxerror_without_traceback.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/others/syntaxerror_without_traceback.txt -------------------------------------------------------------------------------- /tests/exceptions/output/others/sys_tracebacklimit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/others/sys_tracebacklimit.txt -------------------------------------------------------------------------------- /tests/exceptions/output/others/sys_tracebacklimit_negative.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/others/sys_tracebacklimit_negative.txt -------------------------------------------------------------------------------- /tests/exceptions/output/others/sys_tracebacklimit_none.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/others/sys_tracebacklimit_none.txt -------------------------------------------------------------------------------- /tests/exceptions/output/others/sys_tracebacklimit_unset.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/others/sys_tracebacklimit_unset.txt -------------------------------------------------------------------------------- /tests/exceptions/output/others/zerodivisionerror_without_traceback.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/others/zerodivisionerror_without_traceback.txt -------------------------------------------------------------------------------- /tests/exceptions/output/ownership/assertion_from_lib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/ownership/assertion_from_lib.txt -------------------------------------------------------------------------------- /tests/exceptions/output/ownership/assertion_from_local.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/ownership/assertion_from_local.txt -------------------------------------------------------------------------------- /tests/exceptions/output/ownership/callback.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/ownership/callback.txt -------------------------------------------------------------------------------- /tests/exceptions/output/ownership/catch_decorator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/ownership/catch_decorator.txt -------------------------------------------------------------------------------- /tests/exceptions/output/ownership/catch_decorator_from_lib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/ownership/catch_decorator_from_lib.txt -------------------------------------------------------------------------------- /tests/exceptions/output/ownership/decorated_callback.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/ownership/decorated_callback.txt -------------------------------------------------------------------------------- /tests/exceptions/output/ownership/direct.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/ownership/direct.txt -------------------------------------------------------------------------------- /tests/exceptions/output/ownership/indirect.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/ownership/indirect.txt -------------------------------------------------------------------------------- /tests/exceptions/output/ownership/string_lib.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/ownership/string_lib.txt -------------------------------------------------------------------------------- /tests/exceptions/output/ownership/string_source.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/ownership/string_source.txt -------------------------------------------------------------------------------- /tests/exceptions/output/ownership/syntaxerror.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/output/ownership/syntaxerror.txt -------------------------------------------------------------------------------- /tests/exceptions/source/backtrace/chained_expression_direct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/backtrace/chained_expression_direct.py -------------------------------------------------------------------------------- /tests/exceptions/source/backtrace/chained_expression_indirect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/backtrace/chained_expression_indirect.py -------------------------------------------------------------------------------- /tests/exceptions/source/backtrace/chaining_first.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/backtrace/chaining_first.py -------------------------------------------------------------------------------- /tests/exceptions/source/backtrace/chaining_second.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/backtrace/chaining_second.py -------------------------------------------------------------------------------- /tests/exceptions/source/backtrace/chaining_third.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/backtrace/chaining_third.py -------------------------------------------------------------------------------- /tests/exceptions/source/backtrace/enqueue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/backtrace/enqueue.py -------------------------------------------------------------------------------- /tests/exceptions/source/backtrace/enqueue_with_others_handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/backtrace/enqueue_with_others_handlers.py -------------------------------------------------------------------------------- /tests/exceptions/source/backtrace/frame_values_backward.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/backtrace/frame_values_backward.py -------------------------------------------------------------------------------- /tests/exceptions/source/backtrace/frame_values_forward.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/backtrace/frame_values_forward.py -------------------------------------------------------------------------------- /tests/exceptions/source/backtrace/function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/backtrace/function.py -------------------------------------------------------------------------------- /tests/exceptions/source/backtrace/head_recursion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/backtrace/head_recursion.py -------------------------------------------------------------------------------- /tests/exceptions/source/backtrace/missing_attributes_traceback_objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/backtrace/missing_attributes_traceback_objects.py -------------------------------------------------------------------------------- /tests/exceptions/source/backtrace/nested.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/backtrace/nested.py -------------------------------------------------------------------------------- /tests/exceptions/source/backtrace/nested_chained_catch_up.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/backtrace/nested_chained_catch_up.py -------------------------------------------------------------------------------- /tests/exceptions/source/backtrace/nested_decorator_catch_up.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/backtrace/nested_decorator_catch_up.py -------------------------------------------------------------------------------- /tests/exceptions/source/backtrace/nested_explicit_catch_up.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/backtrace/nested_explicit_catch_up.py -------------------------------------------------------------------------------- /tests/exceptions/source/backtrace/nested_wrapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/backtrace/nested_wrapping.py -------------------------------------------------------------------------------- /tests/exceptions/source/backtrace/no_tb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/backtrace/no_tb.py -------------------------------------------------------------------------------- /tests/exceptions/source/backtrace/not_enough_arguments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/backtrace/not_enough_arguments.py -------------------------------------------------------------------------------- /tests/exceptions/source/backtrace/raising_recursion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/backtrace/raising_recursion.py -------------------------------------------------------------------------------- /tests/exceptions/source/backtrace/suppressed_expression_direct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/backtrace/suppressed_expression_direct.py -------------------------------------------------------------------------------- /tests/exceptions/source/backtrace/suppressed_expression_indirect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/backtrace/suppressed_expression_indirect.py -------------------------------------------------------------------------------- /tests/exceptions/source/backtrace/tail_recursion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/backtrace/tail_recursion.py -------------------------------------------------------------------------------- /tests/exceptions/source/backtrace/too_many_arguments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/backtrace/too_many_arguments.py -------------------------------------------------------------------------------- /tests/exceptions/source/diagnose/assertion_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/diagnose/assertion_error.py -------------------------------------------------------------------------------- /tests/exceptions/source/diagnose/assertion_error_custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/diagnose/assertion_error_custom.py -------------------------------------------------------------------------------- /tests/exceptions/source/diagnose/assertion_error_in_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/diagnose/assertion_error_in_string.py -------------------------------------------------------------------------------- /tests/exceptions/source/diagnose/attributes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/diagnose/attributes.py -------------------------------------------------------------------------------- /tests/exceptions/source/diagnose/chained_both.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/diagnose/chained_both.py -------------------------------------------------------------------------------- /tests/exceptions/source/diagnose/encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/diagnose/encoding.py -------------------------------------------------------------------------------- /tests/exceptions/source/diagnose/global_variable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/diagnose/global_variable.py -------------------------------------------------------------------------------- /tests/exceptions/source/diagnose/indentation_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/diagnose/indentation_error.py -------------------------------------------------------------------------------- /tests/exceptions/source/diagnose/keyword_argument.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/diagnose/keyword_argument.py -------------------------------------------------------------------------------- /tests/exceptions/source/diagnose/multilines_repr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/diagnose/multilines_repr.py -------------------------------------------------------------------------------- /tests/exceptions/source/diagnose/no_error_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/diagnose/no_error_message.py -------------------------------------------------------------------------------- /tests/exceptions/source/diagnose/parenthesis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/diagnose/parenthesis.py -------------------------------------------------------------------------------- /tests/exceptions/source/diagnose/source_multilines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/diagnose/source_multilines.py -------------------------------------------------------------------------------- /tests/exceptions/source/diagnose/source_strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/diagnose/source_strings.py -------------------------------------------------------------------------------- /tests/exceptions/source/diagnose/syntax_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/diagnose/syntax_error.py -------------------------------------------------------------------------------- /tests/exceptions/source/diagnose/syntax_highlighting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/diagnose/syntax_highlighting.py -------------------------------------------------------------------------------- /tests/exceptions/source/diagnose/truncating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/diagnose/truncating.py -------------------------------------------------------------------------------- /tests/exceptions/source/diagnose/unprintable_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/diagnose/unprintable_object.py -------------------------------------------------------------------------------- /tests/exceptions/source/modern/decorate_async_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/modern/decorate_async_generator.py -------------------------------------------------------------------------------- /tests/exceptions/source/modern/exception_formatting_async_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/modern/exception_formatting_async_generator.py -------------------------------------------------------------------------------- /tests/exceptions/source/modern/exception_group_catch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/modern/exception_group_catch.py -------------------------------------------------------------------------------- /tests/exceptions/source/modern/f_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/modern/f_string.py -------------------------------------------------------------------------------- /tests/exceptions/source/modern/grouped_as_cause_and_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/modern/grouped_as_cause_and_context.py -------------------------------------------------------------------------------- /tests/exceptions/source/modern/grouped_max_depth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/modern/grouped_max_depth.py -------------------------------------------------------------------------------- /tests/exceptions/source/modern/grouped_max_length.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/modern/grouped_max_length.py -------------------------------------------------------------------------------- /tests/exceptions/source/modern/grouped_nested.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/modern/grouped_nested.py -------------------------------------------------------------------------------- /tests/exceptions/source/modern/grouped_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/modern/grouped_simple.py -------------------------------------------------------------------------------- /tests/exceptions/source/modern/grouped_with_cause_and_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/modern/grouped_with_cause_and_context.py -------------------------------------------------------------------------------- /tests/exceptions/source/modern/match_statement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/modern/match_statement.py -------------------------------------------------------------------------------- /tests/exceptions/source/modern/notes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/modern/notes.py -------------------------------------------------------------------------------- /tests/exceptions/source/modern/positional_only_argument.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/modern/positional_only_argument.py -------------------------------------------------------------------------------- /tests/exceptions/source/modern/type_hints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/modern/type_hints.py -------------------------------------------------------------------------------- /tests/exceptions/source/modern/walrus_operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/modern/walrus_operator.py -------------------------------------------------------------------------------- /tests/exceptions/source/others/assertionerror_without_traceback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/others/assertionerror_without_traceback.py -------------------------------------------------------------------------------- /tests/exceptions/source/others/broken_but_decorated_repr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/others/broken_but_decorated_repr.py -------------------------------------------------------------------------------- /tests/exceptions/source/others/catch_as_context_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/others/catch_as_context_manager.py -------------------------------------------------------------------------------- /tests/exceptions/source/others/catch_as_decorator_with_parentheses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/others/catch_as_decorator_with_parentheses.py -------------------------------------------------------------------------------- /tests/exceptions/source/others/catch_as_decorator_without_parentheses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/others/catch_as_decorator_without_parentheses.py -------------------------------------------------------------------------------- /tests/exceptions/source/others/catch_as_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/others/catch_as_function.py -------------------------------------------------------------------------------- /tests/exceptions/source/others/catch_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/others/catch_message.py -------------------------------------------------------------------------------- /tests/exceptions/source/others/exception_formatting_coroutine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/others/exception_formatting_coroutine.py -------------------------------------------------------------------------------- /tests/exceptions/source/others/exception_formatting_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/others/exception_formatting_function.py -------------------------------------------------------------------------------- /tests/exceptions/source/others/exception_formatting_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/others/exception_formatting_generator.py -------------------------------------------------------------------------------- /tests/exceptions/source/others/exception_in_property.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/others/exception_in_property.py -------------------------------------------------------------------------------- /tests/exceptions/source/others/handler_formatting_with_context_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/others/handler_formatting_with_context_manager.py -------------------------------------------------------------------------------- /tests/exceptions/source/others/handler_formatting_with_decorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/others/handler_formatting_with_decorator.py -------------------------------------------------------------------------------- /tests/exceptions/source/others/level_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/others/level_name.py -------------------------------------------------------------------------------- /tests/exceptions/source/others/level_number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/others/level_number.py -------------------------------------------------------------------------------- /tests/exceptions/source/others/message_formatting_with_context_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/others/message_formatting_with_context_manager.py -------------------------------------------------------------------------------- /tests/exceptions/source/others/message_formatting_with_decorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/others/message_formatting_with_decorator.py -------------------------------------------------------------------------------- /tests/exceptions/source/others/nested_with_reraise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/others/nested_with_reraise.py -------------------------------------------------------------------------------- /tests/exceptions/source/others/one_liner_recursion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/others/one_liner_recursion.py -------------------------------------------------------------------------------- /tests/exceptions/source/others/recursion_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/others/recursion_error.py -------------------------------------------------------------------------------- /tests/exceptions/source/others/repeated_lines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/others/repeated_lines.py -------------------------------------------------------------------------------- /tests/exceptions/source/others/syntaxerror_without_traceback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/others/syntaxerror_without_traceback.py -------------------------------------------------------------------------------- /tests/exceptions/source/others/sys_tracebacklimit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/others/sys_tracebacklimit.py -------------------------------------------------------------------------------- /tests/exceptions/source/others/sys_tracebacklimit_negative.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/others/sys_tracebacklimit_negative.py -------------------------------------------------------------------------------- /tests/exceptions/source/others/sys_tracebacklimit_none.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/others/sys_tracebacklimit_none.py -------------------------------------------------------------------------------- /tests/exceptions/source/others/sys_tracebacklimit_unset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/others/sys_tracebacklimit_unset.py -------------------------------------------------------------------------------- /tests/exceptions/source/others/zerodivisionerror_without_traceback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/others/zerodivisionerror_without_traceback.py -------------------------------------------------------------------------------- /tests/exceptions/source/ownership/_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/ownership/_init.py -------------------------------------------------------------------------------- /tests/exceptions/source/ownership/assertion_from_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/ownership/assertion_from_lib.py -------------------------------------------------------------------------------- /tests/exceptions/source/ownership/assertion_from_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/ownership/assertion_from_local.py -------------------------------------------------------------------------------- /tests/exceptions/source/ownership/callback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/ownership/callback.py -------------------------------------------------------------------------------- /tests/exceptions/source/ownership/catch_decorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/ownership/catch_decorator.py -------------------------------------------------------------------------------- /tests/exceptions/source/ownership/catch_decorator_from_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/ownership/catch_decorator_from_lib.py -------------------------------------------------------------------------------- /tests/exceptions/source/ownership/decorated_callback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/ownership/decorated_callback.py -------------------------------------------------------------------------------- /tests/exceptions/source/ownership/direct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/ownership/direct.py -------------------------------------------------------------------------------- /tests/exceptions/source/ownership/indirect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/ownership/indirect.py -------------------------------------------------------------------------------- /tests/exceptions/source/ownership/string_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/ownership/string_lib.py -------------------------------------------------------------------------------- /tests/exceptions/source/ownership/string_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/ownership/string_source.py -------------------------------------------------------------------------------- /tests/exceptions/source/ownership/syntaxerror.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/ownership/syntaxerror.py -------------------------------------------------------------------------------- /tests/exceptions/source/ownership/usersite/somelib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/exceptions/source/ownership/usersite/somelib/__init__.py -------------------------------------------------------------------------------- /tests/test_activation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/test_activation.py -------------------------------------------------------------------------------- /tests/test_add_option_backtrace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/test_add_option_backtrace.py -------------------------------------------------------------------------------- /tests/test_add_option_catch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/test_add_option_catch.py -------------------------------------------------------------------------------- /tests/test_add_option_colorize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/test_add_option_colorize.py -------------------------------------------------------------------------------- /tests/test_add_option_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/test_add_option_context.py -------------------------------------------------------------------------------- /tests/test_add_option_diagnose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/test_add_option_diagnose.py -------------------------------------------------------------------------------- /tests/test_add_option_enqueue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/test_add_option_enqueue.py -------------------------------------------------------------------------------- /tests/test_add_option_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/test_add_option_filter.py -------------------------------------------------------------------------------- /tests/test_add_option_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/test_add_option_format.py -------------------------------------------------------------------------------- /tests/test_add_option_kwargs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/test_add_option_kwargs.py -------------------------------------------------------------------------------- /tests/test_add_option_level.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/test_add_option_level.py -------------------------------------------------------------------------------- /tests/test_add_option_serialize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/test_add_option_serialize.py -------------------------------------------------------------------------------- /tests/test_add_sinks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/test_add_sinks.py -------------------------------------------------------------------------------- /tests/test_ansimarkup_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/test_ansimarkup_basic.py -------------------------------------------------------------------------------- /tests/test_ansimarkup_extended.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/test_ansimarkup_extended.py -------------------------------------------------------------------------------- /tests/test_bind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/test_bind.py -------------------------------------------------------------------------------- /tests/test_colorama.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/test_colorama.py -------------------------------------------------------------------------------- /tests/test_configure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/test_configure.py -------------------------------------------------------------------------------- /tests/test_contextualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/test_contextualize.py -------------------------------------------------------------------------------- /tests/test_coroutine_sink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/test_coroutine_sink.py -------------------------------------------------------------------------------- /tests/test_datetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/test_datetime.py -------------------------------------------------------------------------------- /tests/test_deepcopy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/test_deepcopy.py -------------------------------------------------------------------------------- /tests/test_defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/test_defaults.py -------------------------------------------------------------------------------- /tests/test_exceptions_catch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/test_exceptions_catch.py -------------------------------------------------------------------------------- /tests/test_exceptions_formatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/test_exceptions_formatting.py -------------------------------------------------------------------------------- /tests/test_filesink_compression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/test_filesink_compression.py -------------------------------------------------------------------------------- /tests/test_filesink_delay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/test_filesink_delay.py -------------------------------------------------------------------------------- /tests/test_filesink_permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/test_filesink_permissions.py -------------------------------------------------------------------------------- /tests/test_filesink_retention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/test_filesink_retention.py -------------------------------------------------------------------------------- /tests/test_filesink_rotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/test_filesink_rotation.py -------------------------------------------------------------------------------- /tests/test_filesink_watch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/test_filesink_watch.py -------------------------------------------------------------------------------- /tests/test_formatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/test_formatting.py -------------------------------------------------------------------------------- /tests/test_get_frame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/test_get_frame.py -------------------------------------------------------------------------------- /tests/test_interception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/test_interception.py -------------------------------------------------------------------------------- /tests/test_levels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/test_levels.py -------------------------------------------------------------------------------- /tests/test_locks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/test_locks.py -------------------------------------------------------------------------------- /tests/test_multiprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/test_multiprocessing.py -------------------------------------------------------------------------------- /tests/test_opt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/test_opt.py -------------------------------------------------------------------------------- /tests/test_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/test_parse.py -------------------------------------------------------------------------------- /tests/test_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/test_patch.py -------------------------------------------------------------------------------- /tests/test_pickling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/test_pickling.py -------------------------------------------------------------------------------- /tests/test_propagation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/test_propagation.py -------------------------------------------------------------------------------- /tests/test_recattr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/test_recattr.py -------------------------------------------------------------------------------- /tests/test_reinstall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/test_reinstall.py -------------------------------------------------------------------------------- /tests/test_remove.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/test_remove.py -------------------------------------------------------------------------------- /tests/test_repr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/test_repr.py -------------------------------------------------------------------------------- /tests/test_standard_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/test_standard_handler.py -------------------------------------------------------------------------------- /tests/test_threading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/test_threading.py -------------------------------------------------------------------------------- /tests/test_type_hinting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/test_type_hinting.py -------------------------------------------------------------------------------- /tests/typesafety/test_logger.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tests/typesafety/test_logger.yml -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Delgan/loguru/HEAD/tox.ini --------------------------------------------------------------------------------