Your message dated Wed, 16 Apr 2025 11:19:55 +0000
with message-id <[email protected]>
and subject line Bug#1101258: fixed in uvloop 0.21.0+ds1-3
has caused the Debian Bug report #1101258,
regarding uvloop: FTBFS: AssertionError: None != 'mytask!'
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
1101258: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1101258
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: src:uvloop
Version: 0.21.0+ds1-2
Severity: serious
Tags: ftbfs trixie sid

Dear maintainer:

During a rebuild of all packages in unstable, your package failed to build:

--------------------------------------------------------------------------------
[...]
 debian/rules clean
dh clean --with python3 --buildsystem=pybuild
   dh_auto_clean -O--buildsystem=pybuild
I: pybuild base:311: python3.13 setup.py clean 
running clean
removing '/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_uvloop/build' (and everything 
under it)
'build/bdist.linux-x86_64' does not exist -- can't clean it
'build/scripts-3.13' does not exist -- can't clean it
   dh_autoreconf_clean -O--buildsystem=pybuild
   dh_clean -O--buildsystem=pybuild
 debian/rules binary
dh binary --with python3 --buildsystem=pybuild
   dh_update_autotools_config -O--buildsystem=pybuild
   dh_autoreconf -O--buildsystem=pybuild
   dh_auto_configure -O--buildsystem=pybuild
I: pybuild base:311: python3.13 setup.py config 
/usr/lib/python3/dist-packages/setuptools/__init__.py:94: _DeprecatedInstaller: 
setuptools.installer and fetch_build_eggs are deprecated.
!!

        
********************************************************************************
        Requirements should be satisfied by a PEP 517 installer.
        If you are using pip, you can try `pip install --use-pep517`.
        
********************************************************************************

!!
  dist.fetch_build_eggs(dist.setup_requires)
running config
   dh_auto_build -O--buildsystem=pybuild
I: pybuild base:311: /usr/bin/python3 setup.py build build_ext 
--use-system-libuv
/usr/lib/python3/dist-packages/setuptools/__init__.py:94: _DeprecatedInstaller: 
setuptools.installer and fetch_build_eggs are deprecated.
!!

        
********************************************************************************
        Requirements should be satisfied by a PEP 517 installer.
        If you are using pip, you can try `pip install --use-pep517`.
        
********************************************************************************

!!
  dist.fetch_build_eggs(dist.setup_requires)
running build
running build_py
creating /<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_uvloop/build/uvloop
copying uvloop/_version.py -> 
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_uvloop/build/uvloop
copying uvloop/_noop.py -> 
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_uvloop/build/uvloop
copying uvloop/_testbase.py -> 
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_uvloop/build/uvloop
copying uvloop/__init__.py -> 
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_uvloop/build/uvloop
running egg_info
creating uvloop.egg-info
writing uvloop.egg-info/PKG-INFO
writing dependency_links to uvloop.egg-info/dependency_links.txt
writing requirements to uvloop.egg-info/requires.txt
writing top-level names to uvloop.egg-info/top_level.txt
writing manifest file 'uvloop.egg-info/SOURCES.txt'
Compiling uvloop/loop.pyx because it changed.
[1/1] Cythonizing uvloop/loop.pyx
reading manifest file 'uvloop.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
warning: no files found matching '*' under directory 'vendor/libuv'
warning: no previously-included files matching '*' found under directory 
'vendor/libuv/.git'
warning: no previously-included files matching '*' found under directory 
'vendor/libuv/docs'
warning: no previously-included files matching '*' found under directory 
'vendor/libuv/img'
adding license file 'LICENSE-APACHE'
adding license file 'LICENSE-MIT'
writing manifest file 'uvloop.egg-info/SOURCES.txt'
/usr/lib/python3/dist-packages/setuptools/command/build_py.py:212: _Warning: 
Package 'uvloop.handles' is absent from the `packages` configuration.
!!

        
********************************************************************************
        ############################
        # Package would be ignored #
        ############################
        Python recognizes 'uvloop.handles' as an importable package[^1],
        but it is absent from setuptools' `packages` configuration.

        This leads to an ambiguous overall configuration. If you want to 
distribute this
        package, please make sure that 'uvloop.handles' is explicitly added
        to the `packages` configuration field.

        Alternatively, you can also rely on setuptools' discovery methods
        (for example by using `find_namespace_packages(...)`/`find_namespace:`
        instead of `find_packages(...)`/`find:`).

        You can read more about "package discovery" on setuptools documentation 
page:

        - https://setuptools.pypa.io/en/latest/userguide/package_discovery.html

        If you don't want 'uvloop.handles' to be distributed and are
        already explicitly excluding 'uvloop.handles' via
        `find_namespace_packages(...)/find_namespace` or 
`find_packages(...)/find`,
        you can try to use `exclude_package_data`, or 
`include-package-data=False` in
        combination with a more fine grained `package-data` configuration.

        You can read more about "package data files" on setuptools 
documentation page:

        - https://setuptools.pypa.io/en/latest/userguide/datafiles.html


        [^1]: For Python, any directory (with suitable naming) can be imported,
              even if it does not contain any `.py` files.
              On the other hand, currently there is no concept of package data
              directory, all directories are treated like packages.
        
********************************************************************************

!!
  check.warn(importable)
/usr/lib/python3/dist-packages/setuptools/command/build_py.py:212: _Warning: 
Package 'uvloop.includes' is absent from the `packages` configuration.
!!

        
********************************************************************************
        ############################
        # Package would be ignored #
        ############################
        Python recognizes 'uvloop.includes' as an importable package[^1],
        but it is absent from setuptools' `packages` configuration.

        This leads to an ambiguous overall configuration. If you want to 
distribute this
        package, please make sure that 'uvloop.includes' is explicitly added
        to the `packages` configuration field.

        Alternatively, you can also rely on setuptools' discovery methods
        (for example by using `find_namespace_packages(...)`/`find_namespace:`
        instead of `find_packages(...)`/`find:`).

        You can read more about "package discovery" on setuptools documentation 
page:

        - https://setuptools.pypa.io/en/latest/userguide/package_discovery.html

        If you don't want 'uvloop.includes' to be distributed and are
        already explicitly excluding 'uvloop.includes' via
        `find_namespace_packages(...)/find_namespace` or 
`find_packages(...)/find`,
        you can try to use `exclude_package_data`, or 
`include-package-data=False` in
        combination with a more fine grained `package-data` configuration.

        You can read more about "package data files" on setuptools 
documentation page:

        - https://setuptools.pypa.io/en/latest/userguide/datafiles.html


        [^1]: For Python, any directory (with suitable naming) can be imported,
              even if it does not contain any `.py` files.
              On the other hand, currently there is no concept of package data
              directory, all directories are treated like packages.
        
********************************************************************************

!!
  check.warn(importable)
copying uvloop/cbhandles.pxd -> 
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_uvloop/build/uvloop
copying uvloop/cbhandles.pyx -> 
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_uvloop/build/uvloop
copying uvloop/dns.pyx -> 
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_uvloop/build/uvloop
copying uvloop/errors.pyx -> 
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_uvloop/build/uvloop
copying uvloop/loop.pxd -> 
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_uvloop/build/uvloop
copying uvloop/loop.pyi -> 
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_uvloop/build/uvloop
copying uvloop/loop.pyx -> 
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_uvloop/build/uvloop
copying uvloop/lru.pyx -> 
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_uvloop/build/uvloop
copying uvloop/pseudosock.pyx -> 
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_uvloop/build/uvloop
copying uvloop/py.typed -> 
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_uvloop/build/uvloop
copying uvloop/request.pxd -> 
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_uvloop/build/uvloop
copying uvloop/request.pyx -> 
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_uvloop/build/uvloop
copying uvloop/server.pxd -> 
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_uvloop/build/uvloop
copying uvloop/server.pyx -> 
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_uvloop/build/uvloop
copying uvloop/sslproto.pxd -> 
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_uvloop/build/uvloop
copying uvloop/sslproto.pyx -> 
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_uvloop/build/uvloop
creating /<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_uvloop/build/uvloop/handles
copying uvloop/handles/async_.pxd -> 
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_uvloop/build/uvloop/handles
copying uvloop/handles/async_.pyx -> 
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_uvloop/build/uvloop/handles
copying uvloop/handles/basetransport.pxd -> 
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_uvloop/build/uvloop/handles
copying uvloop/handles/basetransport.pyx -> 
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_uvloop/build/uvloop/handles
copying uvloop/handles/check.pxd -> 
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_uvloop/build/uvloop/handles
copying uvloop/handles/check.pyx -> 
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_uvloop/build/uvloop/handles
copying uvloop/handles/fsevent.pxd -> 
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_uvloop/build/uvloop/handles
copying uvloop/handles/fsevent.pyx -> 
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_uvloop/build/uvloop/handles
copying uvloop/handles/handle.pxd -> 
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_uvloop/build/uvloop/handles
copying uvloop/handles/handle.pyx -> 
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_uvloop/build/uvloop/handles
copying uvloop/handles/idle.pxd -> 
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_uvloop/build/uvloop/handles
copying uvloop/handles/idle.pyx -> 
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_uvloop/build/uvloop/handles
copying uvloop/handles/pipe.pxd -> 
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_uvloop/build/uvloop/handles
copying uvloop/handles/pipe.pyx -> 
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_uvloop/build/uvloop/handles
copying uvloop/handles/poll.pxd -> 
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_uvloop/build/uvloop/handles
copying uvloop/handles/poll.pyx -> 
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_uvloop/build/uvloop/handles
copying uvloop/handles/process.pxd -> 
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_uvloop/build/uvloop/handles
copying uvloop/handles/process.pyx -> 
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_uvloop/build/uvloop/handles
copying uvloop/handles/stream.pxd -> 
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_uvloop/build/uvloop/handles
copying uvloop/handles/stream.pyx -> 
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_uvloop/build/uvloop/handles
copying uvloop/handles/streamserver.pxd -> 
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_uvloop/build/uvloop/handles
copying uvloop/handles/streamserver.pyx -> 
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_uvloop/build/uvloop/handles
copying uvloop/handles/tcp.pxd -> 
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_uvloop/build/uvloop/handles
copying uvloop/handles/tcp.pyx -> 
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_uvloop/build/uvloop/handles
copying uvloop/handles/timer.pxd -> 
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_uvloop/build/uvloop/handles
copying uvloop/handles/timer.pyx -> 
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_uvloop/build/uvloop/handles
copying uvloop/handles/udp.pxd -> 
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_uvloop/build/uvloop/handles
copying uvloop/handles/udp.pyx -> 
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_uvloop/build/uvloop/handles
creating /<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_uvloop/build/uvloop/includes
copying uvloop/includes/__init__.py -> 
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_uvloop/build/uvloop/includes
copying uvloop/includes/consts.pxi -> 
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_uvloop/build/uvloop/includes
copying uvloop/includes/debug.pxd -> 
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_uvloop/build/uvloop/includes
copying uvloop/includes/flowcontrol.pxd -> 
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_uvloop/build/uvloop/includes
copying uvloop/includes/python.pxd -> 
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_uvloop/build/uvloop/includes
copying uvloop/includes/stdlib.pxi -> 
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_uvloop/build/uvloop/includes
copying uvloop/includes/system.pxd -> 
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_uvloop/build/uvloop/includes
copying uvloop/includes/uv.pxd -> 
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_uvloop/build/uvloop/includes
running build_ext
building 'uvloop.loop' extension
creating build/temp.linux-x86_64-cpython-313/uvloop
x86_64-linux-gnu-gcc -g -O2 -Werror=implicit-function-declaration 
-ffile-prefix-map=/<<PKGBUILDDIR>>=. -fstack-protector-strong 
-fstack-clash-protection -Wformat -Werror=format-security -fcf-protection 
-Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -I/usr/include/python3.13 -c 
uvloop/loop.c -o build/temp.linux-x86_64-cpython-313/uvloop/loop.o -O2
x86_64-linux-gnu-gcc -shared -Wl,-O1 -Wl,-Bsymbolic-functions -Wl,-z,relro -g 
-fwrapv -O2 -Wl,-z,relro -Wl,-z,now -g -O2 
-Werror=implicit-function-declaration -ffile-prefix-map=/<<PKGBUILDDIR>>=. 
-fstack-protector-strong -fstack-clash-protection -Wformat 
-Werror=format-security -fcf-protection -Wdate-time -D_FORTIFY_SOURCE=2 
build/temp.linux-x86_64-cpython-313/uvloop/loop.o -L/usr/lib/x86_64-linux-gnu 
-luv -lrt -lpthread -o 
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_uvloop/build/uvloop/loop.cpython-313-x86_64-linux-gnu.so
   dh_auto_test -O--buildsystem=pybuild
I: pybuild base:311: cd /<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_uvloop/build; 
python3.13 -m pytest -s tests --ignore=tests/test_pipes.py 
--ignore=tests/test_sourcecode.py --ignore=tests/test_sockets.py 
--ignore=tests/test_tcp.py --ignore=tests/test_libuv_api.py 
--ignore=tests/test_dns.py
============================= test session starts ==============================
platform linux -- Python 3.13.2, pytest-8.3.5, pluggy-1.5.0
rootdir: /<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_uvloop/build
configfile: pyproject.toml
plugins: typeguard-4.4.2
collected 296 items

tests/test_aiohttp.py ...s
tests/test_base.py 
.s............................................s................................F.......
tests/test_context.py ..................s..s.s......
tests/test_cython.py .
tests/test_dealloc.py .
tests/test_executors.py ....
tests/test_fs_event.py ..
tests/test_process.py 
..................................................................................
tests/test_process_spawning.py .
tests/test_regr1.py .
tests/test_runner.py ..
tests/test_signals.py .....................
tests/test_testbase.py ...
tests/test_udp.py ..................ss...
tests/test_unix.py ..................................

=================================== FAILURES ===================================
________________________ TestBaseAIO.test_set_task_name ________________________
Traceback (most recent call last):
  File "/usr/lib/python3.13/unittest/case.py", line 58, in testPartExecutor
    yield
  File "/usr/lib/python3.13/unittest/case.py", line 651, in run
    self._callTestMethod(testMethod)
    ~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^
  File "/usr/lib/python3.13/unittest/case.py", line 606, in _callTestMethod
    if method() is not None:
       ~~~~~~^^
  File 
"/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_uvloop/build/tests/test_base.py", line 
594, in test_set_task_name
    self.assertEqual(result, "mytask!")
    ~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^
  File "/usr/lib/python3.13/unittest/case.py", line 907, in assertEqual
    assertion_func(first, second, msg=msg)
    ~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^
  File "/usr/lib/python3.13/unittest/case.py", line 900, in _baseAssertEqual
    raise self.failureException(msg)
AssertionError: None != 'mytask!'
=============================== warnings summary ===============================
tests/test_aiohttp.py::Test_UV_AioHTTP::test_aiohttp_graceful_shutdown
  
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_uvloop/build/tests/test_aiohttp.py:85: 
NotAppKeyWarning: It is recommended to use web.AppKey instances for keys.
  https://docs.aiohttp.org/en/stable/web_advanced.html#application-s-config
    app['websockets'] = weakref.WeakSet()

tests/test_aiohttp.py::Test_UV_AioHTTP::test_aiohttp_graceful_shutdown
  /usr/lib/python3/dist-packages/aiohttp/web_runner.py:95: DeprecationWarning: 
shutdown_timeout should be set on BaseRunner
    super().__init__(

tests/test_base.py::TestBaseAIO::test_shutdown_asyncgens_01
  /<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_uvloop/build/uvloop/_testbase.py:113: 
RuntimeWarning: coroutine '_TestBase.test_set_task_name.<locals>.coro' was 
never awaited
    gc.collect()
  Enable tracemalloc to get traceback where the object was allocated.
  See 
https://docs.pytest.org/en/stable/how-to/capture-warnings.html#resource-warnings
 for more info.

tests/test_executors.py::TestUVExecutors::test_executors_process_pool_01
tests/test_executors.py::TestAIOExecutors::test_executors_process_pool_01
tests/test_regr1.py::TestIssue39Regr::test_issue39_regression
  /usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning: 
This process (pid=95308) is multi-threaded, use of fork() may lead to deadlocks 
in the child.
    self.pid = os.fork()

-- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html
=========================== short test summary info ============================
FAILED tests/test_base.py::TestBaseAIO::test_set_task_name - AssertionError: ...
============ 1 failed, 287 passed, 8 skipped, 6 warnings in 37.87s =============
E: pybuild pybuild:389: test: plugin distutils failed with: exit code=1: cd 
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13_uvloop/build; python3.13 -m pytest -s 
tests --ignore=tests/test_pipes.py --ignore=tests/test_sourcecode.py 
--ignore=tests/test_sockets.py --ignore=tests/test_tcp.py 
--ignore=tests/test_libuv_api.py --ignore=tests/test_dns.py
dh_auto_test: error: pybuild --test --test-pytest -i python{version} -p 3.13 
returned exit code 13
make: *** [debian/rules:13: binary] Error 25
dpkg-buildpackage: error: debian/rules binary subprocess returned exit status 2
--------------------------------------------------------------------------------

The above is just how the build ends and not necessarily the most relevant part.
If required, the full build log is available here:

https://people.debian.org/~sanvila/build-logs/202503/

About the archive rebuild: The build was made on virtual machines from AWS,
using sbuild and a reduced chroot with only build-essential packages.

If you could not reproduce the bug please contact me privately, as I
am willing to provide ssh access to a virtual machine where the bug is
fully reproducible.

If this is really a bug in one of the build-depends, please use
reassign and add an affects on src:uvloop, so that this is still
visible in the BTS web page for this package.

Thanks.

--- End Message ---
--- Begin Message ---
Source: uvloop
Source-Version: 0.21.0+ds1-3
Done: Colin Watson <[email protected]>

We believe that the bug you reported is fixed in the latest version of
uvloop, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Colin Watson <[email protected]> (supplier of updated uvloop package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Format: 1.8
Date: Wed, 16 Apr 2025 12:00:37 +0100
Source: uvloop
Architecture: source
Version: 0.21.0+ds1-3
Distribution: unstable
Urgency: medium
Maintainer: Piotr Ożarowski <[email protected]>
Changed-By: Colin Watson <[email protected]>
Closes: 1101258
Changes:
 uvloop (0.21.0+ds1-3) unstable; urgency=medium
 .
   * Team upload.
   * Compensate for asyncio changes in Python 3.13.3/3.14 (closes: #1101258).
   * Switch to autopkgtest-pkg-pybuild.
Checksums-Sha1:
 fac6e2e7d23405f2dcd0ced6db8d8c4c4c3066e5 2258 uvloop_0.21.0+ds1-3.dsc
 4bee9bbdea2733e433c46306afe846e776f16be5 12400 
uvloop_0.21.0+ds1-3.debian.tar.xz
 710126e888d4a56c1fc1d4e84715560ccb999edd 8181 
uvloop_0.21.0+ds1-3_source.buildinfo
Checksums-Sha256:
 92185af2a386f6d47c0cc3c8de6e14fd99199d11fa82f1ff3eec90dc7c8a225f 2258 
uvloop_0.21.0+ds1-3.dsc
 cfc9eb742f8ab35dd14165fae32d266ee6abdff80bd59b20f5cf835f29080646 12400 
uvloop_0.21.0+ds1-3.debian.tar.xz
 caa1c823ae1b399cb48c3dd76bc33545f836995a912fc07619aff7d3d36c78bf 8181 
uvloop_0.21.0+ds1-3_source.buildinfo
Files:
 423888b72b2df267a59925cdfa78949e 2258 python optional uvloop_0.21.0+ds1-3.dsc
 a9ab865dfbb490d256235693e81590b1 12400 python optional 
uvloop_0.21.0+ds1-3.debian.tar.xz
 4803cd54986f13dcf15380283aa284f4 8181 python optional 
uvloop_0.21.0+ds1-3_source.buildinfo

-----BEGIN PGP SIGNATURE-----

iQIzBAEBCgAdFiEErApP8SYRtvzPAcEROTWH2X2GUAsFAmf/jjkACgkQOTWH2X2G
UAtHghAAinjgzc1c2gkMUIBdTtwu1vdq1NGDeHVjAIS2mScU2L6FCWX1r+8XYsUb
CAfjDmuUu4q2UTT8/4MCnS/7Qh1LbEygGsiFCwlCbXUmWbdQldP2mfDzthEQRw69
LN9GjUUQ4czcO2Ym/yiRApwv2+Wv5GsY0+3//igP/+nR6QXcu7DQmQgHMI36aRik
p+awbYfaFwIcLqW7fuYnvnyR+QOQ3/uZBrVObse5kzSFVIB2wdYSCHnY+GpKLi9x
prKzjaWwBt3YMFu9znudXVKWMeOlGtEhl1ur0mk7iIqXWmDDxRjBuBNzsEtFzEg0
tMJt41PsJY4pugVLxh3jnjXSJM7XWmGoRcV57+LYEDiD4CfpXv8hPHwGfLzly2wd
sEHBGxQHRvJdIdcYKyGi2geBH5dFcQqV6qkvKIYc2cvFM+Q7yvVz12lGZ/t0fvXO
VuuGuRH7agf0YyiwF1YJYR6nbwLTGGV7ybeEuptg2otL1x6QHxgsGwk3CjNOCha6
5eog221NivKbqr/LBDpFxNwkkmCrzFcePGy/3+4VSljICvP4Dwwmiao9ud8isDbO
EFYpufDdGWPTXqBvsehJtkf2G5OUfOhTSXn/vRzFxoPO6jeZE2xr63R8gvg7xaXC
auVnhkQIT0NAJgYluKYLhwRCkotlmLs5fTf4NVpOQfvgUKgtpCU=
=ODl1
-----END PGP SIGNATURE-----

Attachment: pgpQa6QeEcxjA.pgp
Description: PGP signature


--- End Message ---

Reply via email to