Version in base suite: 0.5.1-1 Base version: python-iniparse_0.5.1-1 Target version: python-iniparse_0.5.1-1+deb13u1 Base file: /srv/ftp-master.debian.org/ftp/pool/main/p/python-iniparse/python-iniparse_0.5.1-1.dsc Target file: /srv/ftp-master.debian.org/policy/pool/main/p/python-iniparse/python-iniparse_0.5.1-1+deb13u1.dsc changelog | 7 +++++++ patches/fix-race-condition.patch | 15 +++++++++++++++ patches/series | 1 + 3 files changed, 23 insertions(+) dpkg-source: warning: cannot verify inline signature for /srv/release.debian.org/tmp/tmpy_rc7ixn/python-iniparse_0.5.1-1.dsc: no acceptable signature found dpkg-source: warning: cannot verify inline signature for /srv/release.debian.org/tmp/tmpy_rc7ixn/python-iniparse_0.5.1-1+deb13u1.dsc: no acceptable signature found diff -Nru python-iniparse-0.5.1/debian/changelog python-iniparse-0.5.1/debian/changelog --- python-iniparse-0.5.1/debian/changelog 2024-12-11 15:27:00.000000000 +0000 +++ python-iniparse-0.5.1/debian/changelog 2026-06-07 20:15:00.000000000 +0000 @@ -1,3 +1,10 @@ +python-iniparse (0.5.1-1+deb13u1) trixie; urgency=medium + + * Team upload. + * Fix race condition in test_multiprocessing. Closes: #1137634. + + -- Santiago Vila Sun, 07 Jun 2026 22:15:00 +0200 + python-iniparse (0.5.1-1) unstable; urgency=medium * Team upload. diff -Nru python-iniparse-0.5.1/debian/patches/fix-race-condition.patch python-iniparse-0.5.1/debian/patches/fix-race-condition.patch --- python-iniparse-0.5.1/debian/patches/fix-race-condition.patch 1970-01-01 00:00:00.000000000 +0000 +++ python-iniparse-0.5.1/debian/patches/fix-race-condition.patch 2026-06-07 18:01:00.000000000 +0000 @@ -0,0 +1,15 @@ +From: Santiago Vila +Subject: Fix race condition in test_multiprocessing +Bug-Debian: https://bugs.debian.org/1137634 + +--- a/tests/test_multiprocessing.py ++++ b/tests/test_multiprocessing.py +@@ -16,7 +16,7 @@ + + def test_queue(self): + def getxy(_q, _w): +- _cfg = _q.get_nowait() ++ _cfg = _q.get(timeout=1) + _w.put(_cfg.x.y) + cfg = ini.INIConfig() + cfg.x.y = '42' diff -Nru python-iniparse-0.5.1/debian/patches/series python-iniparse-0.5.1/debian/patches/series --- python-iniparse-0.5.1/debian/patches/series 1970-01-01 00:00:00.000000000 +0000 +++ python-iniparse-0.5.1/debian/patches/series 2026-06-07 18:00:00.000000000 +0000 @@ -0,0 +1 @@ +fix-race-condition.patch