From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4468A15808B for ; Thu, 7 Apr 2022 08:45:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 04129E0AF6; Thu, 7 Apr 2022 08:45:16 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C8BC1E0AF6 for ; Thu, 7 Apr 2022 08:45:15 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9EDF1341103 for ; Thu, 7 Apr 2022 08:45:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CAA54396 for ; Thu, 7 Apr 2022 08:45:11 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1649321107.8d9031e6a05957689353feafa3d5cc2f311d91cb.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/trio/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/trio/metadata.xml X-VCS-Directories: dev-python/trio/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 8d9031e6a05957689353feafa3d5cc2f311d91cb X-VCS-Branch: master Date: Thu, 7 Apr 2022 08:45:11 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: cae09f80-b431-4b17-a8fd-a53cbca27acd X-Archives-Hash: f57b10cc727a3b67a1538cc097a66d65 commit: 8d9031e6a05957689353feafa3d5cc2f311d91cb Author: Michał Górny gentoo org> AuthorDate: Thu Apr 7 08:42:06 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Apr 7 08:45:07 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d9031e6 dev-python/trio: Add python@ as co-maint. Signed-off-by: Michał Górny gentoo.org> dev-python/trio/metadata.xml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dev-python/trio/metadata.xml b/dev-python/trio/metadata.xml index 3cfd749824db..9a0a7c3b54c5 100644 --- a/dev-python/trio/metadata.xml +++ b/dev-python/trio/metadata.xml @@ -6,6 +6,10 @@ andrewammerlaan@gentoo.org Andrew Ammerlaan + + python@gentoo.org + Python + The Trio project's goal is to produce a production-quality, permissively licensed, async/await-native I/O library for Python. Like all async libraries, its main purpose is to help you write programs that do multiple things at the same time with parallelized I/O. A web spider that wants to fetch lots of pages in parallel, a web server that needs to juggle lots of downloads and websocket connections at the same time, a process supervisor monitoring multiple subprocesses... that sort of thing. Compared to other libraries, Trio attempts to distinguish itself with an obsessive focus on usability and correctness. Concurrency is complicated; we try to make it easy to get things right.