Files
bpfire/config/rootfiles/packages
Adolf Belka c3863ea14d python3-trio: Update to version 0.23.1
- Update from version 0.22.0 to 0.23.1
- Update of rootfile
- Changelog
    0.23.0
	Headline features
	    Add type hints. (#543)
	Features
	    When exiting a nursery block, the parent task always waits for child tasks
	     to exit. This wait cannot be cancelled. However, previously, if you tried
	     to cancel it, it would inject a Cancelled exception, even though it wasn’t
	     cancelled. Most users probably never noticed either way, but injecting a
	     Cancelled here is not really useful, and in some rare cases caused
	     confusion or problems, so Trio no longer does that. (#1457)
	    If called from a thread spawned by trio.to_thread.run_sync,
	     trio.from_thread.run and trio.from_thread.run_sync now reuse the task and
	     cancellation status of the host task; this means that context variables and
	     cancel scopes naturally propagate ‘through’ threads spawned by Trio. You
	     can also use trio.from_thread.check_cancelled to efficiently check for
	     cancellation without reentering the Trio thread. (#2392)
	    trio.lowlevel.start_guest_run() now does a bit more setup of the guest run
	     before it returns to its caller, so that the caller can immediately make
	     calls to trio.current_time(), trio.lowlevel.spawn_system_task(),
	     trio.lowlevel.current_trio_token(), etc. (#2696)
	Bugfixes
	    When a starting function raises before calling trio.TaskStatus.started(),
	     trio.Nursery.start() will no longer wrap the exception in an undocumented
	     ExceptionGroup. Previously, trio.Nursery.start() would incorrectly raise an
	     ExceptionGroup containing it when using trio.run(...,
	     strict_exception_groups=True). (#2611)
	Deprecations and removals
	    To better reflect the underlying thread handling semantics, the keyword
	     argument for trio.to_thread.run_sync that was previously called cancellable
	     is now named abandon_on_cancel. It still does the same thing – allow the
	     thread to be abandoned if the call to trio.to_thread.run_sync is
	     cancelled – but since we now have other ways to propagate a cancellation
	     without abandoning the thread, “cancellable” has become somewhat of a
	     misnomer. The old cancellable name is now deprecated. (#2841)
	    Deprecated support for math.inf for the backlog argument in
	     open_tcp_listeners, making its docstring correct in the fact that only
	     TypeError is raised if invalid arguments are passed. (#2842)
	Removals without deprecations
	    Drop support for Python3.7 and PyPy3.7/3.8. (#2668)
	    Removed special MultiError traceback handling for IPython. As of version
	     8.15 ExceptionGroup is handled natively. (#2702)
	Miscellaneous internal changes
	    Trio now indicates its presence to sniffio using the sniffio.thread_local
	     interface that is preferred since sniffio v1.3.0. This should be less
	     likely than the previous approach to cause sniffio.current_async_library()
	     to return incorrect results due to unintended inheritance of contextvars.
	     (#2700)
	    On windows, if SIO_BASE_HANDLE failed and SIO_BSP_HANDLE_POLL didn’t return
	     a different socket, runtime error will now raise from the OSError that
	     indicated the issue so that in the event it does happen it might help with
	     debugging. (#2807)
    0.22.2
	Bugfixes
	    Fix PermissionError when importing trio due to trying to access pthread.
	     (#2688)
    0.22.1
	Breaking changes
	    Timeout functions now raise ValueError if passed math.nan. This includes
	     trio.sleep, trio.sleep_until, trio.move_on_at, trio.move_on_after,
	     trio.fail_at and trio.fail_after. (#2493)
	Features
	    Added support for naming threads created with trio.to_thread.run_sync,
	     requires pthreads so is only available on POSIX platforms with glibc
	     installed. (#1148)
	    trio.socket.socket now prints the address it tried to connect to upon
	     failure. (#1810)
	Bugfixes
	    Fixed a crash that can occur when running Trio within an embedded Python
	     interpreter, by handling the TypeError that is raised when trying to
	     (re-)install a C signal handler. (#2333)
	    Fix sniffio.current_async_library() when Trio tasks are spawned from a
	     non-Trio context (such as when using trio-asyncio). Previously, a regular
	     Trio task would inherit the non-Trio library name, and spawning a system
	     task would cause the non-Trio caller to start thinking it was Trio. (#2462)
	    Issued a new release as in the git tag for 0.22.0, trio.__version__ is
	     incorrectly set to 0.21.0+dev. (#2485)
	Improved documentation
	    Documented that Nursery.start_soon does not guarantee task ordering. (#970)

Tested-by: Adolf Belka <adolf.belka@ipfire.org>
Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
2024-01-29 16:03:31 +00:00
..
2023-10-20 08:41:59 +00:00
2023-04-18 21:16:10 +00:00
2018-11-13 14:28:00 +00:00
2023-12-06 13:40:14 +00:00
2023-04-18 21:20:11 +00:00
2023-09-06 09:33:23 +00:00
2018-12-01 16:13:25 +00:00
2024-01-29 16:03:31 +00:00
2021-02-01 10:45:54 +00:00
2023-11-21 19:05:19 +00:00
2022-07-27 07:09:30 +00:00
2023-11-21 19:01:09 +00:00
2021-02-05 11:24:25 +00:00
2018-11-09 14:29:04 +00:00
2023-04-24 18:42:10 +00:00
2023-07-26 16:08:59 +00:00
2023-11-21 19:19:35 +00:00
2021-09-05 17:46:41 +00:00
2022-02-11 09:17:43 +00:00
2019-04-03 00:33:44 +01:00
2022-11-29 13:44:15 +01:00
2019-04-03 00:26:13 +01:00
2024-01-23 11:36:51 +00:00
2012-08-24 15:44:11 +02:00
2023-07-26 16:09:00 +00:00
2024-01-25 10:23:03 +00:00
2023-07-26 16:09:00 +00:00
2022-09-01 21:16:50 +00:00
2022-02-16 17:11:25 +00:00
2022-09-01 21:16:50 +00:00
2022-07-09 09:08:22 +00:00
2023-07-26 16:09:00 +00:00
2020-12-21 16:35:10 +00:00
2016-04-05 23:47:36 +01:00
2020-09-30 09:58:51 +00:00
2013-06-19 11:49:34 +02:00
2020-06-19 17:14:59 +00:00
2022-04-24 19:02:37 +00:00
2020-04-26 07:31:17 +00:00
2022-11-21 11:01:16 +00:00
2021-04-26 17:10:50 +00:00
2021-04-07 13:16:10 +00:00
2007-09-15 11:36:05 +00:00
2021-06-10 12:21:56 +00:00
2016-06-01 22:22:33 +01:00
2024-01-03 21:26:40 +00:00
2024-01-03 21:19:41 +00:00
2022-12-26 08:46:17 +00:00
2024-01-23 13:53:38 +00:00
2024-01-23 13:53:47 +00:00
2022-05-30 19:45:10 +00:00
2016-06-01 22:25:06 +01:00
2024-01-23 13:53:58 +00:00
2017-04-11 14:23:54 +01:00
2022-01-04 18:27:09 +01:00
2023-02-10 09:27:17 +00:00
2023-08-24 10:14:26 +00:00
2021-03-22 10:43:34 +00:00
2023-11-21 19:31:28 +00:00
2021-04-07 13:15:46 +00:00
2021-04-12 09:32:49 +00:00
2022-09-01 21:16:50 +00:00
2018-06-18 14:12:43 +01:00
2021-03-10 13:58:24 +00:00
2016-04-08 16:12:19 +01:00
2020-09-24 17:36:37 +00:00
2020-05-09 12:03:59 +00:00
2022-09-01 21:16:50 +00:00
2023-05-03 07:50:09 +00:00
2019-03-25 23:44:24 +00:00
2023-07-26 16:09:00 +00:00
2022-08-10 10:44:31 +00:00
2023-11-21 19:20:19 +00:00
2023-07-26 16:09:00 +00:00
2023-05-03 07:52:11 +00:00
2022-09-01 21:16:49 +00:00
2022-09-01 21:16:49 +00:00
2021-05-11 16:44:46 +00:00
2019-03-10 18:22:39 +00:00
2022-01-18 21:26:56 +00:00
2021-03-22 10:43:23 +00:00
2023-05-18 11:24:29 +00:00
2020-08-18 10:10:13 +00:00
2012-11-26 10:56:48 +01:00
2023-11-21 19:21:16 +00:00
2018-11-11 18:55:35 +00:00
2020-08-17 10:10:11 +00:00
2018-11-11 16:21:01 +00:00
2021-09-10 16:57:06 +00:00
2021-11-24 09:32:02 +00:00
2020-04-25 09:03:26 +00:00
2022-02-15 16:56:31 +00:00
2022-09-01 21:16:50 +00:00
2021-03-22 10:39:44 +00:00
2021-09-02 09:18:29 +00:00
2013-06-06 10:58:04 +02:00
2012-09-18 16:33:47 +02:00
2022-08-05 09:12:54 +00:00
2014-10-30 17:52:50 +01:00
2019-02-07 15:15:26 +00:00
2023-08-30 16:17:45 +00:00
2020-02-16 11:48:22 +01:00
2021-07-21 21:49:19 +02:00
2021-07-21 21:49:19 +02:00
2021-07-21 21:49:19 +02:00
2020-02-16 16:26:35 +01:00
2012-11-15 18:24:16 +01:00
2010-07-12 05:32:07 +02:00
2023-06-15 09:39:10 +00:00
2022-02-06 16:46:42 +00:00
2023-09-01 10:30:33 +00:00
2020-04-26 07:35:14 +00:00
2023-05-11 20:03:27 +00:00