summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2022-04-07 10:42:06 +0200
committerMichał Górny <mgorny@gentoo.org>2022-04-07 10:45:07 +0200
commit8d9031e6a05957689353feafa3d5cc2f311d91cb (patch)
treee38a71ab18908ce342f39ac7b6d38e35df6efbb4 /dev-python/trio
parentdev-python/trio: Fix HOMEPAGE (diff)
downloadgentoo-8d9031e6a05957689353feafa3d5cc2f311d91cb.tar.gz
gentoo-8d9031e6a05957689353feafa3d5cc2f311d91cb.tar.bz2
gentoo-8d9031e6a05957689353feafa3d5cc2f311d91cb.zip
dev-python/trio: Add python@ as co-maint.
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/trio')
-rw-r--r--dev-python/trio/metadata.xml4
1 files changed, 4 insertions, 0 deletions
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 @@
<email>andrewammerlaan@gentoo.org</email>
<name>Andrew Ammerlaan</name>
</maintainer>
+ <maintainer type="project">
+ <email>python@gentoo.org</email>
+ <name>Python</name>
+ </maintainer>
<stabilize-allarches/>
<longdescription lang="en">
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.