Your message dated Fri, 27 May 2022 07:20:19 +0000
with message-id <e1nuugh-000hev...@fasolo.debian.org>
and subject line Bug#1006736: fixed in pytest-mock 3.7.0-1
has caused the Debian Bug report #1006736,
regarding python-pytest-asyncio breaks pytest-mock autopkgtest: nomatch: '* 1 
passed in *'
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 ow...@bugs.debian.org
immediately.)


-- 
1006736: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1006736
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: python-pytest-asyncio, pytest-mock
Control: found -1 python-pytest-asyncio/0.18.1-1
Control: found -1 pytest-mock/3.6.1-1
Severity: serious
Tags: sid bookworm
User: debian...@lists.debian.org
Usertags: breaks needs-update

Dear maintainer(s),

With a recent upload of python-pytest-asyncio the autopkgtest of pytest-mock fails in testing when that autopkgtest is run with the binary packages of python-pytest-asyncio from unstable. It passes when run with only packages from testing. In tabular form:

                       pass            fail
python-pytest-asyncio  from testing    0.18.1-1
pytest-mock            from testing    3.6.1-1
all others             from testing    from testing

I copied some of the output at the bottom of this report.

Currently this regression is blocking the migration of python-pytest-asyncio to testing [1]. Due to the nature of this issue, I filed this bug report against both packages. Can you please investigate the situation and reassign the bug to the right package?

More information about this bug and the reason for filing it can be found on
https://wiki.debian.org/ContinuousIntegration/RegressionEmailInformation

Paul

[1] https://qa.debian.org/excuses.php?package=python-pytest-asyncio

https://ci.debian.net/data/autopkgtest/testing/amd64/p/pytest-mock/19680464/log.gz

=================================== FAILURES =================================== ______________________________ test_plain_stopall ______________________________

testdir = <Testdir local('/tmp/pytest-of-debci/pytest-0/test_plain_stopall0')>

    def test_plain_stopall(testdir: Any) -> None:
"""patch.stopall() in a test should not cause an error during unconfigure (#137)"""
        testdir.makepyfile(
            """
            import random
                def get_random_number():
                return random.randint(0, 100)
                def test_get_random_number(mocker):
patcher = mocker.mock_module.patch("random.randint", lambda x, y: 5)
                patcher.start()
                assert get_random_number() == 5
                mocker.mock_module.patch.stopall()
        """
        )
        result = testdir.runpytest_subprocess()
      result.stdout.fnmatch_lines("* 1 passed in *")
E       Failed: nomatch: '* 1 passed in *'
E and: '============================= test session starts ==============================' E and: 'platform linux -- Python 3.10.2, pytest-6.2.5, py-1.10.0, pluggy-0.13.0' E and: 'rootdir: /tmp/pytest-of-debci/pytest-0/test_plain_stopall0'
E           and: 'plugins: asyncio-0.18.1, mock-3.6.1'
E           and: 'asyncio: mode=legacy'
E           and: 'collected 1 item'
E           and: ''
E and: 'test_plain_stopall.py . [100%]'
E           and: ''
E and: '=============================== warnings summary ===============================' E and: '../../../../usr/lib/python3/dist-packages/pytest_asyncio/plugin.py:191' E and: " /usr/lib/python3/dist-packages/pytest_asyncio/plugin.py:191: DeprecationWarning: The 'asyncio_mode' default value will change to 'strict' in future, please explicitly use 'asyncio_mode=strict' or 'asyncio_mode=auto' in pytest configuration file." E and: ' config.issue_config_time_warning(LEGACY_MODE, stacklevel=2)'
E           and: ''
E           and: '-- Docs: https://docs.pytest.org/en/stable/warnings.html'
E and: '========================= 1 passed, 1 warning in 0.02s ========================='
E       remains unmatched: '* 1 passed in *'

/tmp/autopkgtest-lxc.p64demaa/downtmp/autopkgtest_tmp/tests/test_pytest_mock.py:842: Failed ----------------------------- Captured stdout call ----------------------------- running: /usr/bin/python3.10 -mpytest --basetemp=/tmp/pytest-of-debci/pytest-0/test_plain_stopall0/runpytest-0
     in: /tmp/pytest-of-debci/pytest-0/test_plain_stopall0
============================= test session starts ==============================
platform linux -- Python 3.10.2, pytest-6.2.5, py-1.10.0, pluggy-0.13.0
rootdir: /tmp/pytest-of-debci/pytest-0/test_plain_stopall0
plugins: asyncio-0.18.1, mock-3.6.1
asyncio: mode=legacy
collected 1 item

test_plain_stopall.py . [100%]

=============================== warnings summary ===============================
../../../../usr/lib/python3/dist-packages/pytest_asyncio/plugin.py:191
/usr/lib/python3/dist-packages/pytest_asyncio/plugin.py:191: DeprecationWarning: The 'asyncio_mode' default value will change to 'strict' in future, please explicitly use 'asyncio_mode=strict' or 'asyncio_mode=auto' in pytest configuration file.
    config.issue_config_time_warning(LEGACY_MODE, stacklevel=2)

-- Docs: https://docs.pytest.org/en/stable/warnings.html
========================= 1 passed, 1 warning in 0.02s ========================= __________________________ test_used_with_class_scope __________________________

testdir = <Testdir local('/tmp/pytest-of-debci/pytest-0/test_used_with_class_scope0')>

    def test_used_with_class_scope(testdir: Any) -> None:
        testdir.makepyfile(
            """
            import pytest
            import random
            import unittest
                def get_random_number():
                return random.randint(0, 1)
                @pytest.fixture(autouse=True, scope="class")
            def randint_mock(class_mocker):
                return class_mocker.patch("random.randint", lambda x, y: 5)
                class TestGetRandomNumber(unittest.TestCase):
                def test_get_random_number(self):
                    assert get_random_number() == 5
        """
        )
        result = testdir.runpytest_subprocess()
        assert "AssertionError" not in result.stderr.str()
      result.stdout.fnmatch_lines("* 1 passed in *")
E       Failed: nomatch: '* 1 passed in *'
E and: '============================= test session starts ==============================' E and: 'platform linux -- Python 3.10.2, pytest-6.2.5, py-1.10.0, pluggy-0.13.0' E and: 'rootdir: /tmp/pytest-of-debci/pytest-0/test_used_with_class_scope0'
E           and: 'plugins: asyncio-0.18.1, mock-3.6.1'
E           and: 'asyncio: mode=legacy'
E           and: 'collected 1 item'
E           and: ''
E and: 'test_used_with_class_scope.py . [100%]'
E           and: ''
E and: '=============================== warnings summary ===============================' E and: '../../../../usr/lib/python3/dist-packages/pytest_asyncio/plugin.py:191' E and: " /usr/lib/python3/dist-packages/pytest_asyncio/plugin.py:191: DeprecationWarning: The 'asyncio_mode' default value will change to 'strict' in future, please explicitly use 'asyncio_mode=strict' or 'asyncio_mode=auto' in pytest configuration file." E and: ' config.issue_config_time_warning(LEGACY_MODE, stacklevel=2)'
E           and: ''
E           and: '-- Docs: https://docs.pytest.org/en/stable/warnings.html'
E and: '========================= 1 passed, 1 warning in 0.02s ========================='
E       remains unmatched: '* 1 passed in *'

/tmp/autopkgtest-lxc.p64demaa/downtmp/autopkgtest_tmp/tests/test_pytest_mock.py:981: Failed ----------------------------- Captured stdout call ----------------------------- running: /usr/bin/python3.10 -mpytest --basetemp=/tmp/pytest-of-debci/pytest-0/test_used_with_class_scope0/runpytest-0
     in: /tmp/pytest-of-debci/pytest-0/test_used_with_class_scope0
============================= test session starts ==============================
platform linux -- Python 3.10.2, pytest-6.2.5, py-1.10.0, pluggy-0.13.0
rootdir: /tmp/pytest-of-debci/pytest-0/test_used_with_class_scope0
plugins: asyncio-0.18.1, mock-3.6.1
asyncio: mode=legacy
collected 1 item

test_used_with_class_scope.py . [100%]

=============================== warnings summary ===============================
../../../../usr/lib/python3/dist-packages/pytest_asyncio/plugin.py:191
/usr/lib/python3/dist-packages/pytest_asyncio/plugin.py:191: DeprecationWarning: The 'asyncio_mode' default value will change to 'strict' in future, please explicitly use 'asyncio_mode=strict' or 'asyncio_mode=auto' in pytest configuration file.
    config.issue_config_time_warning(LEGACY_MODE, stacklevel=2)

-- Docs: https://docs.pytest.org/en/stable/warnings.html
========================= 1 passed, 1 warning in 0.02s ========================= _________________________ test_used_with_module_scope __________________________

testdir = <Testdir local('/tmp/pytest-of-debci/pytest-0/test_used_with_module_scope0')>

    def test_used_with_module_scope(testdir: Any) -> None:
        testdir.makepyfile(
            """
            import pytest
            import random
                def get_random_number():
                return random.randint(0, 1)
                @pytest.fixture(autouse=True, scope="module")
            def randint_mock(module_mocker):
return module_mocker.patch("random.randint", lambda x, y: 5)
                def test_get_random_number():
                assert get_random_number() == 5
        """
        )
        result = testdir.runpytest_subprocess()
        assert "AssertionError" not in result.stderr.str()
      result.stdout.fnmatch_lines("* 1 passed in *")
E       Failed: nomatch: '* 1 passed in *'
E and: '============================= test session starts ==============================' E and: 'platform linux -- Python 3.10.2, pytest-6.2.5, py-1.10.0, pluggy-0.13.0' E and: 'rootdir: /tmp/pytest-of-debci/pytest-0/test_used_with_module_scope0'
E           and: 'plugins: asyncio-0.18.1, mock-3.6.1'
E           and: 'asyncio: mode=legacy'
E           and: 'collected 1 item'
E           and: ''
E and: 'test_used_with_module_scope.py . [100%]'
E           and: ''
E and: '=============================== warnings summary ===============================' E and: '../../../../usr/lib/python3/dist-packages/pytest_asyncio/plugin.py:191' E and: " /usr/lib/python3/dist-packages/pytest_asyncio/plugin.py:191: DeprecationWarning: The 'asyncio_mode' default value will change to 'strict' in future, please explicitly use 'asyncio_mode=strict' or 'asyncio_mode=auto' in pytest configuration file." E and: ' config.issue_config_time_warning(LEGACY_MODE, stacklevel=2)'
E           and: ''
E           and: '-- Docs: https://docs.pytest.org/en/stable/warnings.html'
E and: '========================= 1 passed, 1 warning in 0.02s ========================='
E       remains unmatched: '* 1 passed in *'

/tmp/autopkgtest-lxc.p64demaa/downtmp/autopkgtest_tmp/tests/test_pytest_mock.py:1003: Failed ----------------------------- Captured stdout call ----------------------------- running: /usr/bin/python3.10 -mpytest --basetemp=/tmp/pytest-of-debci/pytest-0/test_used_with_module_scope0/runpytest-0
     in: /tmp/pytest-of-debci/pytest-0/test_used_with_module_scope0
============================= test session starts ==============================
platform linux -- Python 3.10.2, pytest-6.2.5, py-1.10.0, pluggy-0.13.0
rootdir: /tmp/pytest-of-debci/pytest-0/test_used_with_module_scope0
plugins: asyncio-0.18.1, mock-3.6.1
asyncio: mode=legacy
collected 1 item

test_used_with_module_scope.py . [100%]

=============================== warnings summary ===============================
../../../../usr/lib/python3/dist-packages/pytest_asyncio/plugin.py:191
/usr/lib/python3/dist-packages/pytest_asyncio/plugin.py:191: DeprecationWarning: The 'asyncio_mode' default value will change to 'strict' in future, please explicitly use 'asyncio_mode=strict' or 'asyncio_mode=auto' in pytest configuration file.
    config.issue_config_time_warning(LEGACY_MODE, stacklevel=2)

-- Docs: https://docs.pytest.org/en/stable/warnings.html
========================= 1 passed, 1 warning in 0.02s ========================= _________________________ test_used_with_package_scope _________________________

testdir = <Testdir local('/tmp/pytest-of-debci/pytest-0/test_used_with_package_scope0')>

    def test_used_with_package_scope(testdir: Any) -> None:
        """..."""
        testdir.makepyfile(
            """
            import pytest
            import random
                def get_random_number():
                return random.randint(0, 1)
                @pytest.fixture(autouse=True, scope="package")
            def randint_mock(package_mocker):
return package_mocker.patch("random.randint", lambda x, y: 5)
                def test_get_random_number():
                assert get_random_number() == 5
        """
        )
        result = testdir.runpytest_subprocess()
        assert "AssertionError" not in result.stderr.str()
      result.stdout.fnmatch_lines("* 1 passed in *")
E       Failed: nomatch: '* 1 passed in *'
E and: '============================= test session starts ==============================' E and: 'platform linux -- Python 3.10.2, pytest-6.2.5, py-1.10.0, pluggy-0.13.0' E and: 'rootdir: /tmp/pytest-of-debci/pytest-0/test_used_with_package_scope0'
E           and: 'plugins: asyncio-0.18.1, mock-3.6.1'
E           and: 'asyncio: mode=legacy'
E           and: 'collected 1 item'
E           and: ''
E and: 'test_used_with_package_scope.py . [100%]'
E           and: ''
E and: '=============================== warnings summary ===============================' E and: '../../../../usr/lib/python3/dist-packages/pytest_asyncio/plugin.py:191' E and: " /usr/lib/python3/dist-packages/pytest_asyncio/plugin.py:191: DeprecationWarning: The 'asyncio_mode' default value will change to 'strict' in future, please explicitly use 'asyncio_mode=strict' or 'asyncio_mode=auto' in pytest configuration file." E and: ' config.issue_config_time_warning(LEGACY_MODE, stacklevel=2)'
E           and: ''
E           and: '-- Docs: https://docs.pytest.org/en/stable/warnings.html'
E and: '========================= 1 passed, 1 warning in 0.02s ========================='
E       remains unmatched: '* 1 passed in *'

/tmp/autopkgtest-lxc.p64demaa/downtmp/autopkgtest_tmp/tests/test_pytest_mock.py:1026: Failed ----------------------------- Captured stdout call ----------------------------- running: /usr/bin/python3.10 -mpytest --basetemp=/tmp/pytest-of-debci/pytest-0/test_used_with_package_scope0/runpytest-0
     in: /tmp/pytest-of-debci/pytest-0/test_used_with_package_scope0
============================= test session starts ==============================
platform linux -- Python 3.10.2, pytest-6.2.5, py-1.10.0, pluggy-0.13.0
rootdir: /tmp/pytest-of-debci/pytest-0/test_used_with_package_scope0
plugins: asyncio-0.18.1, mock-3.6.1
asyncio: mode=legacy
collected 1 item

test_used_with_package_scope.py . [100%]

=============================== warnings summary ===============================
../../../../usr/lib/python3/dist-packages/pytest_asyncio/plugin.py:191
/usr/lib/python3/dist-packages/pytest_asyncio/plugin.py:191: DeprecationWarning: The 'asyncio_mode' default value will change to 'strict' in future, please explicitly use 'asyncio_mode=strict' or 'asyncio_mode=auto' in pytest configuration file.
    config.issue_config_time_warning(LEGACY_MODE, stacklevel=2)

-- Docs: https://docs.pytest.org/en/stable/warnings.html
========================= 1 passed, 1 warning in 0.02s ========================= _________________________ test_used_with_session_scope _________________________

testdir = <Testdir local('/tmp/pytest-of-debci/pytest-0/test_used_with_session_scope0')>

    def test_used_with_session_scope(testdir: Any) -> None:
        """..."""
        testdir.makepyfile(
            """
            import pytest
            import random
                def get_random_number():
                return random.randint(0, 1)
                @pytest.fixture(autouse=True, scope="session")
            def randint_mock(session_mocker):
return session_mocker.patch("random.randint", lambda x, y: 5)
                def test_get_random_number():
                assert get_random_number() == 5
        """
        )
        result = testdir.runpytest_subprocess()
        assert "AssertionError" not in result.stderr.str()
      result.stdout.fnmatch_lines("* 1 passed in *")
E       Failed: nomatch: '* 1 passed in *'
E and: '============================= test session starts ==============================' E and: 'platform linux -- Python 3.10.2, pytest-6.2.5, py-1.10.0, pluggy-0.13.0' E and: 'rootdir: /tmp/pytest-of-debci/pytest-0/test_used_with_session_scope0'
E           and: 'plugins: asyncio-0.18.1, mock-3.6.1'
E           and: 'asyncio: mode=legacy'
E           and: 'collected 1 item'
E           and: ''
E and: 'test_used_with_session_scope.py . [100%]'
E           and: ''
E and: '=============================== warnings summary ===============================' E and: '../../../../usr/lib/python3/dist-packages/pytest_asyncio/plugin.py:191' E and: " /usr/lib/python3/dist-packages/pytest_asyncio/plugin.py:191: DeprecationWarning: The 'asyncio_mode' default value will change to 'strict' in future, please explicitly use 'asyncio_mode=strict' or 'asyncio_mode=auto' in pytest configuration file." E and: ' config.issue_config_time_warning(LEGACY_MODE, stacklevel=2)'
E           and: ''
E           and: '-- Docs: https://docs.pytest.org/en/stable/warnings.html'
E and: '========================= 1 passed, 1 warning in 0.02s ========================='
E       remains unmatched: '* 1 passed in *'

/tmp/autopkgtest-lxc.p64demaa/downtmp/autopkgtest_tmp/tests/test_pytest_mock.py:1049: Failed ----------------------------- Captured stdout call ----------------------------- running: /usr/bin/python3.10 -mpytest --basetemp=/tmp/pytest-of-debci/pytest-0/test_used_with_session_scope0/runpytest-0
     in: /tmp/pytest-of-debci/pytest-0/test_used_with_session_scope0
============================= test session starts ==============================
platform linux -- Python 3.10.2, pytest-6.2.5, py-1.10.0, pluggy-0.13.0
rootdir: /tmp/pytest-of-debci/pytest-0/test_used_with_session_scope0
plugins: asyncio-0.18.1, mock-3.6.1
asyncio: mode=legacy
collected 1 item

test_used_with_session_scope.py . [100%]

=============================== warnings summary ===============================
../../../../usr/lib/python3/dist-packages/pytest_asyncio/plugin.py:191
/usr/lib/python3/dist-packages/pytest_asyncio/plugin.py:191: DeprecationWarning: The 'asyncio_mode' default value will change to 'strict' in future, please explicitly use 'asyncio_mode=strict' or 'asyncio_mode=auto' in pytest configuration file.
    config.issue_config_time_warning(LEGACY_MODE, stacklevel=2)

-- Docs: https://docs.pytest.org/en/stable/warnings.html
========================= 1 passed, 1 warning in 0.02s ========================= =============================== warnings summary ===============================
../../../../usr/lib/python3/dist-packages/pytest_asyncio/plugin.py:191
/usr/lib/python3/dist-packages/pytest_asyncio/plugin.py:191: DeprecationWarning: The 'asyncio_mode' default value will change to 'strict' in future, please explicitly use 'asyncio_mode=strict' or 'asyncio_mode=auto' in pytest configuration file.
    config.issue_config_time_warning(LEGACY_MODE, stacklevel=2)

-- Docs: https://docs.pytest.org/en/stable/warnings.html
=========================== short test summary info ============================ FAILED tests/test_pytest_mock.py::test_plain_stopall - Failed: nomatch: '* 1 ... FAILED tests/test_pytest_mock.py::test_used_with_class_scope - Failed: nomatc... FAILED tests/test_pytest_mock.py::test_used_with_module_scope - Failed: nomat... FAILED tests/test_pytest_mock.py::test_used_with_package_scope - Failed: noma... FAILED tests/test_pytest_mock.py::test_used_with_session_scope - Failed: noma... ============== 5 failed, 63 passed, 4 skipped, 1 warning in 3.59s ==============
autopkgtest [16:11:59]: test command1

Attachment: OpenPGP_signature
Description: OpenPGP digital signature


--- End Message ---
--- Begin Message ---
Source: pytest-mock
Source-Version: 3.7.0-1
Done: Julian Gilbey <j...@debian.org>

We believe that the bug you reported is fixed in the latest version of
pytest-mock, 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 1006...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Julian Gilbey <j...@debian.org> (supplier of updated pytest-mock 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 ftpmas...@ftp-master.debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256

Format: 1.8
Date: Fri, 27 May 2022 07:37:21 +0100
Source: pytest-mock
Architecture: source
Version: 3.7.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Python Team <team+pyt...@tracker.debian.org>
Changed-By: Julian Gilbey <j...@debian.org>
Closes: 1006736
Changes:
 pytest-mock (3.7.0-1) unstable; urgency=medium
 .
   * Team upload
   * New upstream version (Closes: 1006736)
Checksums-Sha1:
 604801b7ff8841a4e7c77c2c7470346d46987e7d 2223 pytest-mock_3.7.0-1.dsc
 61c5a29cf5ea26ad074dac6f85e9f1d9f437d8b6 25347 pytest-mock_3.7.0.orig.tar.gz
 d467f536089cc3427a58e6de9a33d43ec4aabb34 3392 pytest-mock_3.7.0-1.debian.tar.xz
 2483b6ef3a11200a7eba1770af7ef57df0f83533 6823 
pytest-mock_3.7.0-1_amd64.buildinfo
Checksums-Sha256:
 db76a3abdabe8a27fb65a39a15bb2819f44dec2201f7e1a5451ddbe9ac48cb15 2223 
pytest-mock_3.7.0-1.dsc
 c3be21636000cc7792b1af9dd1bd0e35228b7bc58617ab7799924a503877705c 25347 
pytest-mock_3.7.0.orig.tar.gz
 2838c06d92c899fdd63fd7f49e935f645616e84b52ca3b01e70281ec844045b6 3392 
pytest-mock_3.7.0-1.debian.tar.xz
 98b564925408b553d4f949f456d1a909aa41587c0b51d46da7dba2bfeb706355 6823 
pytest-mock_3.7.0-1_amd64.buildinfo
Files:
 5b4f488082ec16ef03d2748887711859 2223 python optional pytest-mock_3.7.0-1.dsc
 5f64bc5c2f256c721a9f28d3d23dc974 25347 python optional 
pytest-mock_3.7.0.orig.tar.gz
 ec945be60a216a03dd32f6df2699bccf 3392 python optional 
pytest-mock_3.7.0-1.debian.tar.xz
 6506874106c1c1a3e9690f8354d4f677 6823 python optional 
pytest-mock_3.7.0-1_amd64.buildinfo

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

iQJDBAEBCAAtFiEEfhrD+iemSShMMj72aVxCkxbAe/4FAmKQcgoPHGpkZ0BkZWJp
YW4ub3JnAAoJEGlcQpMWwHv+/+UP/21f/81T5zsgT8KDIWEE7TbCgmEuajdPdUhO
Pwi09lGtyUSB4p7+LX2L9BCEFt9yzSmlusF94sPQ0aAZQFMCDpb8jgT/dMEeZqtg
xslDuDMmCZCtH2PM9NB48O60W7T26PAVbIIWVG3L8550RURqK9hAc51krboaqusV
jQS7PM68pjuycsynwaHuQ385Elq8MEOsk1KDVkUGpAHDW0iEWQPPzyssRFR6mIfw
lWUg8tDO1Kq/jDCWNW/NuLaFhBH2w3p7h93ngt7OJzuTK75r847kxQ/JzN1Badwv
1Y7Kz32Zk4GydwqnqP2PWHJm23Cu0swEJs8njhlsZyz6PrfjsjqbmAEYNkxXovDY
hh9ejCZ7Ag5vobnrbNYCIq2GCFwFQJC3N5dSmVWXJ/xW+oYswRrDcYTxnOgL76pq
LVpbnK7ZUBrl8VqylBnMORAZ4trBp6z+Zde1pEgZiMeQWMjplRO/ZWW0+btg8BNx
vuQM0otRtjU6cnvQb1caysluR/7CnA3cLv8wK2222Yi7aZra/P26P3URj3/6Clpi
FGoJUdeAM6P9SO4/v0dzEX783tLeF/4te1Ib/aiWumMDw0ME4aMjOXyr7f/UR85G
M+x/t7P4LcOLhtwb4Itx3tjt7IHzKr8Sfab/cIYANsG2X+x8tJrojYpSQkYyuRii
NCHFkuby
=K2RR
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to