Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
Name: python310-loguru | Distribution: openSUSE Tumbleweed |
Version: 0.7.2 | Vendor: openSUSE |
Release: 1.5 | Build date: Thu Oct 5 10:54:06 2023 |
Group: Development/Languages/Python | Build host: reproducible |
Size: 414281 | Source RPM: python-loguru-0.7.2-1.5.src.rpm |
Packager: https://bugs.opensuse.org | |
Url: https://github.com/Delgan/loguru | |
Summary: Python logging component with a simple interface |
Python logging component providing a single object which dispatches log messages to configured handlers.
MIT
* Thu Oct 05 2023 Dirk Müller <dmueller@suse.com> - update to 0.7.2: * Add support for formatting of `ExceptionGroup` errors (#805). * Fix possible `RuntimeError` when using `multiprocessing.set_start_method()` after importing the `logger` (#974). * Fix formatting of possible `__notes__` attached to an `Exception` (#980). - update to 0.7.1: * Add a new `context` optional argument to `logger.add()` specifying `multiprocessing` context (like `"spawn"` or `"fork"`) to be used internally instead of the default one * Add support for true colors on Windows using ANSI/VT console when available (#934, thanks @tunaflsh). * Fix possible deadlock when calling `logger.complete()` with concurrent logging of an asynchronous sink (#906). * Fix file possibly rotating too early or too late when re- starting an application around midnight (#894). * Fix inverted `""` and `""` color tags * Fix possible untraceable errors raised when logging non- unpicklable `Exception` instances while using `enqueue=True` * Fix possible errors raised when logging non-picklable `Exception` instances while using `enqueue=True` (#342, thanks @ncoudene). * Fix missing seconds and microseconds when formatting timezone offset that requires such accuracy * Raise `ValueError` if an attempt to use nanosecond precision for time formatting is detected * Fri May 12 2023 Dirk Müller <dmueller@suse.com> - drop optional mypy testing dependency * Fri May 05 2023 Dirk Müller <dmueller@suse.com> - update to 0.7.0: * Update `InterceptHandler` recipe to make it compatible with Python 3.11 (#654). * Add a new `watch` optional argument to file sinks in order to automatically re-create possibly deleted or changed file (#471). * Make `patch()` calls cumulative instead of overriding the possibly existing patching function (#462). * Make sinks added with `enqueue=True` and `catch=False` still process logged messages in case of internal exception (#833). * Avoid possible deadlocks caused by re-using the logger inside a sink, a signal handler or a `__del__` method. Since the logger is not re-entrant, such misuse will be detected and will now generate a `RuntimeError` (#712, thanks @jacksmith15). * Fix file sink rotation using an aware `datetime.time` for which the timezone was ignored (#697). * Fix logs colorization not automatically enabled for Jupyter Notebook and Google Colab (#494). * Fix logs colorization not automatically enabled for Github Actions and others CI platforms (#604). * Fix `logger.complete()` possibly hanging forever when `enqueue=True` and `catch=False` if internal thread killed due to `Exception` raised by sink (#647). * Fix incompatibility with `freezegun` library used to simulate time (#600). * Raise exception if `logger.catch()` is used to wrap a class instead of a function to avoid unexpected behavior (#623). - drop python311.patch, loguru-fix-repr-tests.patch: upstream * Fri Apr 21 2023 Dirk Müller <dmueller@suse.com> - add sle15_python_module_pythons (jsc#PED-68) * Thu Apr 13 2023 Matej Cepl <mcepl@suse.com> - Make calling of %{sle15modernpython} optional. * Sat Jan 28 2023 Dirk Müller <dmueller@suse.com> - add python311.patch to fix build with python 3.11 * Fri Aug 05 2022 Ben Greiner <code@bnavigator.de> - Update to 0.6.0 * Remove internal use of pickle.loads() considered as a security vulnerability referenced as CVE-2022-0329 (#563). * Modify coroutine sink to make it discard log messages when loop=None and no event loop is running (due to internally using asyncio.get_running_loop() in place of asyncio.get_event_loop()). * Remove the possibility to add a coroutine sink with enqueue=True if loop=None and no event loop is running. * Change default encoding of file sink to be utf8 instead of locale.getpreferredencoding() (#339). * Prevent non-ascii characters to be escaped while logging JSON message with serialize=True (#575, thanks @ponponon). * Fix flake8 errors and improve code readability (#353, thanks @AndrewYakimets). - Drop merged patches: * loguru-exception-formatting-py39.patch * pytest-6.2-excepthooks.patch - Add loguru-fix-repr-tests.patch * Fix "repr()" tests failing on Python 3.11 and Python 3.10.6 * https://github.com/Delgan/loguru/commit/4fe21f66 * Thu Dec 09 2021 Ben Greiner <code@bnavigator.de> - Skip two formatting tests -- gh#Delgan/loguru#550 * Sun Apr 18 2021 Ben Greiner <code@bnavigator.de> - Add loguru-exception-formatting-py39.patch https://github.com/Delgan/loguru/commit/19f518c5 for changed exception formatting in Python 3.9 * Fri Feb 19 2021 John Vandenberg <jayvdb@gmail.com> - Add pytest-6.2-excepthooks.patch for compatibility with pytest 6.2 * Mon Feb 08 2021 John Vandenberg <jayvdb@gmail.com> - Update t0 v0.5.3 * Fix child process possibly hanging at exit while combining enqueue=True with third party library like uwsgi * Fix possible exception during formatting of non-string messages - from v0.5.2 * Fix AttributeError within handlers using serialize=True when calling logger.exception() outside of the context of an exception * Fix error while logging an exception containing a non-picklable value to a handler with enqueue=True * Add support for async callable classes used as sinks - from v0.5.1 * Modify the way the extra dict is used by LogRecord in order to prevent possible KeyError with standard logging handlers * Add a new default optional argument to logger.catch(), it should be the returned value by the decorated function in case an error occurred * Fix ValueError when using serialize=True in combination with logger.catch() or logger.opt(record=True) due to circular reference of the record dict - from v0.5.0 * Remove the possibility to modify the severity no of levels once they have been added in order to prevent surprising behavior * Add better support for "structured logging" by automatically adding **kwargs to the extra dict besides using these arguments to format the message. This behavior can be disabled by setting the new .opt(capture=False) parameter * Add a new onerror optional argument to logger.catch(), it should be a function which will be called when an exception occurs in order to customize error handling * Add a new exclude optional argument to logger.catch(), is should be a type of exception to be purposefully ignored and propagated to the caller without being logged * Modify complete() to make it callable from non-asynchronous functions, it can thus be used if enqueue=True to make sure all messages have been processed * Fix possible deadlocks on Linux when multiprocessing.Process() collides with enqueue=True or threading * Fix compression function not executable concurrently due to file renaming (to resolve conflicts) being performed after and not before it * Fix the filter function listing files for retention being too restrictive, it now matches files based on the pattern "basename(.*).ext(.*)" * Fix the impossibility to remove() a handler if an exception is raised while the sink' stop() function is called * Fix file sink left in an unstable state if an exception occurred during retention or compression process * Fix situation where changes made to record["message"] were unexpectedly ignored when opt(colors=True), causing "out-of-date" message to be logged due to implementation details * Fix possible exception if a stream having an isatty() method returning True but not being compatible with colorama is used on Windows * Fix exceptions occurring in coroutine sinks never retrieved and hence causing warnings * Thu Jan 21 2021 Benjamin Greiner <code@bnavigator.de> - Add runtime requirement for contextvars and the correct BR for Leap - Skip failing tests on 32-bit * Thu Jan 21 2021 Steve Kowalik <steven.kowalik@suse.com> - BuildRequire python36-aiocontextvars if building under python 3.6
/usr/lib/python3.10/site-packages/loguru /usr/lib/python3.10/site-packages/loguru-0.7.2-py3.10.egg-info /usr/lib/python3.10/site-packages/loguru-0.7.2-py3.10.egg-info/PKG-INFO /usr/lib/python3.10/site-packages/loguru-0.7.2-py3.10.egg-info/SOURCES.txt /usr/lib/python3.10/site-packages/loguru-0.7.2-py3.10.egg-info/dependency_links.txt /usr/lib/python3.10/site-packages/loguru-0.7.2-py3.10.egg-info/requires.txt /usr/lib/python3.10/site-packages/loguru-0.7.2-py3.10.egg-info/top_level.txt /usr/lib/python3.10/site-packages/loguru/__init__.py /usr/lib/python3.10/site-packages/loguru/__init__.pyi /usr/lib/python3.10/site-packages/loguru/__pycache__ /usr/lib/python3.10/site-packages/loguru/__pycache__/__init__.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/loguru/__pycache__/__init__.cpython-310.pyc /usr/lib/python3.10/site-packages/loguru/__pycache__/_asyncio_loop.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/loguru/__pycache__/_asyncio_loop.cpython-310.pyc /usr/lib/python3.10/site-packages/loguru/__pycache__/_better_exceptions.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/loguru/__pycache__/_better_exceptions.cpython-310.pyc /usr/lib/python3.10/site-packages/loguru/__pycache__/_colorama.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/loguru/__pycache__/_colorama.cpython-310.pyc /usr/lib/python3.10/site-packages/loguru/__pycache__/_colorizer.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/loguru/__pycache__/_colorizer.cpython-310.pyc /usr/lib/python3.10/site-packages/loguru/__pycache__/_contextvars.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/loguru/__pycache__/_contextvars.cpython-310.pyc /usr/lib/python3.10/site-packages/loguru/__pycache__/_ctime_functions.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/loguru/__pycache__/_ctime_functions.cpython-310.pyc /usr/lib/python3.10/site-packages/loguru/__pycache__/_datetime.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/loguru/__pycache__/_datetime.cpython-310.pyc /usr/lib/python3.10/site-packages/loguru/__pycache__/_defaults.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/loguru/__pycache__/_defaults.cpython-310.pyc /usr/lib/python3.10/site-packages/loguru/__pycache__/_error_interceptor.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/loguru/__pycache__/_error_interceptor.cpython-310.pyc /usr/lib/python3.10/site-packages/loguru/__pycache__/_file_sink.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/loguru/__pycache__/_file_sink.cpython-310.pyc /usr/lib/python3.10/site-packages/loguru/__pycache__/_filters.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/loguru/__pycache__/_filters.cpython-310.pyc /usr/lib/python3.10/site-packages/loguru/__pycache__/_get_frame.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/loguru/__pycache__/_get_frame.cpython-310.pyc /usr/lib/python3.10/site-packages/loguru/__pycache__/_handler.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/loguru/__pycache__/_handler.cpython-310.pyc /usr/lib/python3.10/site-packages/loguru/__pycache__/_locks_machinery.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/loguru/__pycache__/_locks_machinery.cpython-310.pyc /usr/lib/python3.10/site-packages/loguru/__pycache__/_logger.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/loguru/__pycache__/_logger.cpython-310.pyc /usr/lib/python3.10/site-packages/loguru/__pycache__/_recattrs.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/loguru/__pycache__/_recattrs.cpython-310.pyc /usr/lib/python3.10/site-packages/loguru/__pycache__/_simple_sinks.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/loguru/__pycache__/_simple_sinks.cpython-310.pyc /usr/lib/python3.10/site-packages/loguru/__pycache__/_string_parsers.cpython-310.opt-1.pyc /usr/lib/python3.10/site-packages/loguru/__pycache__/_string_parsers.cpython-310.pyc /usr/lib/python3.10/site-packages/loguru/_asyncio_loop.py /usr/lib/python3.10/site-packages/loguru/_better_exceptions.py /usr/lib/python3.10/site-packages/loguru/_colorama.py /usr/lib/python3.10/site-packages/loguru/_colorizer.py /usr/lib/python3.10/site-packages/loguru/_contextvars.py /usr/lib/python3.10/site-packages/loguru/_ctime_functions.py /usr/lib/python3.10/site-packages/loguru/_datetime.py /usr/lib/python3.10/site-packages/loguru/_defaults.py /usr/lib/python3.10/site-packages/loguru/_error_interceptor.py /usr/lib/python3.10/site-packages/loguru/_file_sink.py /usr/lib/python3.10/site-packages/loguru/_filters.py /usr/lib/python3.10/site-packages/loguru/_get_frame.py /usr/lib/python3.10/site-packages/loguru/_handler.py /usr/lib/python3.10/site-packages/loguru/_locks_machinery.py /usr/lib/python3.10/site-packages/loguru/_logger.py /usr/lib/python3.10/site-packages/loguru/_recattrs.py /usr/lib/python3.10/site-packages/loguru/_simple_sinks.py /usr/lib/python3.10/site-packages/loguru/_string_parsers.py /usr/lib/python3.10/site-packages/loguru/py.typed /usr/share/doc/packages/python310-loguru /usr/share/doc/packages/python310-loguru/README.rst /usr/share/licenses/python310-loguru /usr/share/licenses/python310-loguru/LICENSE
Generated by rpm2html 1.8.1
Fabrice Bellet, Mon Oct 28 23:53:52 2024