Your message dated Sat, 06 Jun 2026 07:33:58 +0000
with message-id <[email protected]>
and subject line Bug#1076154: fixed in hplip 3.26.4+dfsg0-2
has caused the Debian Bug report #1076154,
regarding When hplip-data is installed, Python 3.12 through 3.13.5-1 reports 
various invalid escape sequences for multiple files in /usr/share/hplip
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.)


-- 
1076154: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1076154
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: python3
Version: 3.12.5-1+b1
Severity: normal

I just ran 
apt update && apt-distupgrade in testing. The following packages were
upgraded:

Start-Date: 2024-09-14  18:07:52
Commandline: apt dist-upgrade
Upgrade: libpython3-dev:amd64 (3.12.5-1, 3.12.5-1+b1), python3-minimal:amd64 
(3.12.5-1, 3.12.5-1+b1), python3:amd64 (3.12.5-1, 3.12.5-1+b1), 
python3-all:amd64 (3.12.5-1, 3.12.5-1+b1), python3-dev:amd64 (3.12.5-1, 
3.12.5-1+b1), libpython3-stdlib:amd64 (3.12.5-1, 3.12.5-1+b1), 
librav1e-dev:amd64 (0.7.1-7, 0.7.1-7+b1), librav1e0.7:amd64 (0.7.1-7, 
0.7.1-7+b1)
Remove: linux-image-6.10.6-amd64:amd64 (6.10.6-1)
End-Date: 2024-09-14  18:08:07

I don't know if I'm reporting to the correct one, please reassing if not.

The update ran in an root terminal, when I switched back, I saw the following 
on the screen:

  re.compile('^agent(\d+)-sku', re.IGNORECASE) : TYPE_STR,
/usr/share/hplip/base/models.py:444: SyntaxWarning: invalid escape sequence '\d'
  re.compile('^in-tray(\d+)', re.IGNORECASE) : TYPE_BOOL,
/usr/share/hplip/base/models.py:445: SyntaxWarning: invalid escape sequence '\d'
  re.compile('^out-tray(\d+)', re.IGNORECASE) : TYPE_BOOL,
/usr/share/hplip/base/models.py:446: SyntaxWarning: invalid escape sequence '\d'
  re.compile('^model(\d+)', re.IGNORECASE) : TYPE_STR,
/usr/share/hplip/base/password.py:212: SyntaxWarning: invalid escape sequence 
'\['
  cb = cb.replace("[", "\[")
/usr/share/hplip/base/password.py:213: SyntaxWarning: invalid escape sequence 
'\]'
  cb = cb.replace("]", "\]")
/usr/share/hplip/base/queues.py:48: SyntaxWarning: invalid escape sequence '\*'
  NICKNAME_PATTERN = re.compile(b'''\*NickName:\s*\"(.*)"''', re.MULTILINE)
/usr/share/hplip/base/status.py:1335: SyntaxWarning: invalid escape sequence 
'\s'
  pjl_code_pat = re.compile("""^CODE\s*=\s*(\d.*)$""", re.IGNORECASE)
/usr/share/hplip/base/tui.py:220: SyntaxWarning: invalid escape sequence '\|'
  self.spinner = "\|/-\|/-*"
/usr/share/hplip/base/utils.py:150: SyntaxWarning: invalid escape sequence '\w'
  lis = ((re.findall('SystemGroup [\w* ]*',fp.read()))[0].replace('SystemGroup 
','')).split(' ')
/usr/share/hplip/base/utils.py:1584: SyntaxWarning: invalid escape sequence '\*'
  USAGE_LOGGING2 = ("", "<level>: none, info\*, error, warn, debug 
(\*default)", "option", False)
/usr/share/hplip/base/utils.py:1592: SyntaxWarning: invalid escape sequence '\*'
  USAGE_BUS2 = ("", "<bus>: cups\*, usb\*, net, bt, fw, par\* (\*defaults) 
(Note: bt and fw not supported in this release.)", 'option', False)
/usr/share/hplip/base/utils.py:1598: SyntaxWarning: invalid escape sequence '\*'
  USAGE_STD_NOTES2 = ("If -p\* is specified, the default CUPS printer will be 
used.", "", "note", False)
/usr/share/hplip/base/utils.py:1826: SyntaxWarning: invalid escape sequence '\-'
  log.info(".SH NAME\n%s \- %s" % (crumb, title))
/usr/share/hplip/base/utils.py:1925: SyntaxWarning: invalid escape sequence '\w'
  return re.sub("&#?\w+;", fixup, text)
/usr/share/hplip/base/utils.py:1978: SyntaxWarning: invalid escape sequence '\d'
  pat=re.compile('''(\d{1,})([a-z]{1,})''')
/usr/share/hplip/check.py:630: SyntaxWarning: invalid escape sequence '\s'
  lsusb_pat = 
re.compile("""^Bus\s([0-9a-fA-F]{3,3})\sDevice\s([0-9a-fA-F]{3,3}):\sID\s([0-9a-fA-F]{4,4}):([0-9a-fA-F]{4,4})(.*)""",
 re.IGNORECASE)
/usr/share/hplip/fax/ledmfax.py:46: SyntaxWarning: invalid escape sequence '\d'
  http_result_pat = re.compile(b"""HTTP/\d.\d\s(\d+)""", re.I)
/usr/share/hplip/fax/soapfax.py:44: SyntaxWarning: invalid escape sequence '\d'
  http_result_pat = re.compile("""HTTP/\d.\d\s(\d+)""", re.I)
/usr/share/hplip/installer/dcheck.py:35: SyntaxWarning: invalid escape sequence 
'\d'
  ver1_pat = re.compile("""(\d+\.\d+\.\d+)""", re.IGNORECASE)
/usr/share/hplip/installer/dcheck.py:36: SyntaxWarning: invalid escape sequence 
'\d'
  ver_pat = re.compile("""(\d+\.\d+)""", re.IGNORECASE)
/usr/share/hplip/installer/dcheck.py:360: SyntaxWarning: invalid escape 
sequence '\d'
  xsane_ver_pat =re.compile('''xsane-(\d{1,}\.\d{1,}).*''')
/usr/share/hplip/makeuri.py:49: SyntaxWarning: invalid escape sequence '\*'
  ("To specify the port on a multi-port JetDirect:", "-p<port> or --port=<port> 
(Valid values are 1\*, 2, and 3. \*default)", "option", False),
/usr/share/hplip/prnt/cups.py:170: SyntaxWarning: invalid escape sequence '\s'
  pat_cups_error_log = 
re.compile("""^loglevel\s?(debug|debug2|warn|info|error|none)""", re.I)
/usr/share/hplip/probe.py:45: SyntaxWarning: invalid escape sequence '\*'
  ("", "<bus>: cups, usb\*, net, bt, fw, par (\*default) (Note: bt and fw not 
supported in this release.)", "option", False),
/usr/share/hplip/probe.py:49: SyntaxWarning: invalid escape sequence '\*'
  ("", "<filter list>: comma separated list of one or more of: scan, pcard, 
fax, copy, or none\*. (\*none is the default)", "option", False),
/usr/share/hplip/scan.py:254: SyntaxWarning: invalid escape sequence '\*'
  ("Scan mode:", "-m<mode> or --mode=<mode>. Where <mode> is 'gray'\*, 'color' 
or 'lineart'.", "option", False),
/usr/share/hplip/scan.py:271: SyntaxWarning: invalid escape sequence '\*'
  ("", "where <units> is 'mm'\*, 'cm', 'in', 'px', or 'pt' ('mm' is default).", 
"option", False),
/usr/share/hplip/setup.py:82: SyntaxWarning: invalid escape sequence '\*'
  ("To specify the port on a multi-port JetDirect:", "--port=<port> (Valid 
values are 1\*, 2, and 3. \*default)", "option", False),
/usr/share/hplip/setup.py:86: SyntaxWarning: invalid escape sequence '\*'
  ("Type of queue(s) to install:", "-t<typelist> or --type=<typelist>. 
<typelist>: print*, fax\* (\*default) (-i mode only)", "option", False),
/usr/share/games/seahorse-adventures/lib/pgu/gui/theme.py:106: SyntaxWarning: 
invalid escape sequence '\.'
  is_image = re.compile('\.(gif|jpg|bmp|png|tga)$', re.I)
/usr/share/games/seahorse-adventures/lib/pgu/html.py:115: SyntaxWarning: 
invalid escape sequence '\D'
  anum = re.compile("\D")
/usr/share/games/seahorse-adventures/lib/pgu/html.py:432: SyntaxWarning: 
invalid escape sequence '\s'
  txt = re.compile("\s+").sub(" ",txt)

running python post-rtupdate hooks for python3.12...
python3-dev (3.12.5-1+b1) wird eingerichtet ...
librav1e-dev:amd64 (0.7.1-7+b1) wird eingerichtet ...
python3-all (3.12.5-1+b1) wird eingerichtet ...
Trigger für libc-bin (2.40-2) werden verarbeitet ...
Trigger für man-db (2.13.0-1) werden verarbeitet ...

This does not look good to me, but I've no understanding for python. 

Either there is a python problem or the output is too verbose, because
packages should print status messages, not long logs. (And I cannot
remember having seen such an output before).

If you need further information, I'm glad to provide it.

Greetings

           Helge

-- System Information:
Debian Release: trixie/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)

Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to de_DE.UTF-8), LANGUAGE not set
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages python3 depends on:
ii  libpython3-stdlib  3.12.5-1+b1
ii  python3-minimal    3.12.5-1+b1
ii  python3.12         3.12.6-1

python3 recommends no packages.

Versions of packages python3 suggests:
pn  python3-doc   <none>
ii  python3-tk    3.12.5-3
pn  python3-venv  <none>

-- no debconf information

-- 
      Dr. Helge Kreutzmann                     [email protected]
           Dipl.-Phys.                   http://www.helgefjell.de/debian.php
        64bit GNU powered                     gpg signed mail preferred
           Help keep free software "libre": http://www.ffii.de/

Attachment: signature.asc
Description: PGP signature


--- End Message ---
--- Begin Message ---
Source: hplip
Source-Version: 3.26.4+dfsg0-2
Done: Thorsten Alteholz <[email protected]>

We believe that the bug you reported is fixed in the latest version of
hplip, 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.
Thorsten Alteholz <[email protected]> (supplier of updated hplip 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: Fri, 05 Jun 2026 18:14:59 +0200
Source: hplip
Architecture: source
Version: 3.26.4+dfsg0-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Printing Team <[email protected]>
Changed-By: Thorsten Alteholz <[email protected]>
Closes: 1076154 1137729 1138048
Changes:
 hplip (3.26.4+dfsg0-2) unstable; urgency=medium
 .
   * add patch to fix HP color laserjet mfp e78635-ps ppd
   * make tests have same dependencies as hplip itself
     (Thanks a lot to Agustin Martin for the patches)
     (Closes: #1137729)
   * fix invalid python escape sequences
     (Thanks a lot to Agustin Martin for adapting the Ubuntu patch
      from Till)
     (Closes: #1076154)
   * drop patch Cope-with-prnt-hpcups-ErnieFilter.-cpp-h-removal-by-, which
     is no longer needed
     (Thanks a lot to Agustin Martin for this suggestion)
     (Closes: #1138048)
Checksums-Sha1:
 b07544b2d8955bd76561447d8d1a672dbcb7e538 3176 hplip_3.26.4+dfsg0-2.dsc
 20b9777e7aa607c2ab46bee4a439c40e700f27ac 148616 
hplip_3.26.4+dfsg0-2.debian.tar.xz
 69c2747dd767fe6b3a585448d2afe67b0a5cb11c 20380 
hplip_3.26.4+dfsg0-2_amd64.buildinfo
Checksums-Sha256:
 66380b467cdbdc45e58f1e15d31481da89459d6e884c2b99bcfc7db68c6bdcf5 3176 
hplip_3.26.4+dfsg0-2.dsc
 dc978fae833771eed2822c59763ab325b18be9def325c6fa5a0e21cf0383201e 148616 
hplip_3.26.4+dfsg0-2.debian.tar.xz
 b4f05462c73b72524f82f62c1fd915d666091d7a35bea3fa91cdc69222d49b4e 20380 
hplip_3.26.4+dfsg0-2_amd64.buildinfo
Files:
 3aa278cf719a9f62a20b75ce43df8c09 3176 utils optional hplip_3.26.4+dfsg0-2.dsc
 595196b5c1cf99a308908a23038bd9b6 148616 utils optional 
hplip_3.26.4+dfsg0-2.debian.tar.xz
 0beb0efc4c7d2f9ebc46344a4cc706dc 20380 utils optional 
hplip_3.26.4+dfsg0-2_amd64.buildinfo

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

iQKnBAEBCgCRFiEEYgH7/9u94Hgi6ruWlvysDTh7WEcFAmojxqhfFIAAAAAALgAo
aXNzdWVyLWZwckBub3RhdGlvbnMub3BlbnBncC5maWZ0aGhvcnNlbWFuLm5ldDYy
MDFGQkZGREJCREUwNzgyMkVBQkI5Njk2RkNBQzBEMzg3QjU4NDcTHGRlYmlhbkBh
bHRlaG9sei5kZQAKCRCW/KwNOHtYRwVwEACQHwX1Ys+SgBfqvC790JGPCE0HVpOv
WXga1ZjL/0S9ihQPLhZXSgY/hQiPfo+ERYmAvWHsEdxGP2vZ753t+pEt/LBK8iZq
wFnGTM/QO/p8LeV9cm164ezkCUHChQo/eF67FYiqzMiDsK1d4j4pORKnkLBMe2ZG
vO9Hxh/9GILPgcfFwU+xyNatlTl13cigh6N+an3/DYqPUPM3IPqicS7yEVcjhay9
g50qBNwgz1MmvA87ysLQQKkabWDf6n04ULVeIP1n7u1w9E8TEnR8AFsGHkHkXiwq
hUCJ19jvPrI0uoX66qxdaninPzwdCg/o8tPYppvLCti41Z5HrmfnB0Aty4arcG4E
G9pbEQph+7d+CcjXGdpXhpCOcxjidslEr6MEh2kRFvod1wSgFHp+c4xNH3TkZdeH
Raf3ykuzPa6+OFY9zSkjKtQbBQqEFbbs1khWV7RSBDw8/EOQimmnG9a6B2yMiCy/
/ToP7Lzjz69u9PocW8vQNOiNbmJMc5caWjYrcAz+aeqFkiCC0O5EqCM4dxmbUW5X
zvNYyoNSUaWzVYgWEl3Iiz6YW4RTbXzOtxZxN5rDX0AJn14FZS9oDVx8DIiw5/Tk
z/3nEIJF4+y/ksv92c3vKRR6MIVjPsJrwti+627jxAGrd/mAWkzsOBrGUAcybkBl
KsW9j3w/7fgCuQ==
=Vz44
-----END PGP SIGNATURE-----

Attachment: pgplP1ZyMmiAJ.pgp
Description: PGP signature


--- End Message ---

Reply via email to