summaryrefslogtreecommitdiff
path: root/net-proxy/hatop/files/hatop-0.8.2-python312.patch
blob: 68515d6d6bd109fa54d13ca481fdcd9f8af78cd6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
From 0c0a392d319ed495a55f8ad29291c4a7cbd5077a Mon Sep 17 00:00:00 2001
From: sblondon <stephane.blondon@gmail.com>
Date: Tue, 19 Mar 2024 19:33:17 +0100
Subject: [PATCH] Fix syntax warnings in Python3.12 (#17)

Python3.12 added new syntax warning if strings contain invalid sequence.

The change is documented in:
https://docs.python.org/3/whatsnew/3.12.html#other-language-changes
---
 bin/hatop | 34 +++++++++++++++++-----------------
 1 file changed, 17 insertions(+), 17 deletions(-)

diff --git a/bin/hatop b/bin/hatop
index bb69311..9aa9553 100755
--- a/bin/hatop
+++ b/bin/hatop
@@ -196,7 +196,7 @@ HAPROXY_CLI_MAXLINES = 1000
 CLI_MAXLINES = 1000
 CLI_MAXHIST = 100
 CLI_INPUT_LIMIT = 200
-CLI_INPUT_RE = re.compile('[a-zA-Z0-9_:\.\-\+; /#%]')
+CLI_INPUT_RE = re.compile(r'[a-zA-Z0-9_:\.\-\+; /#%]')
 CLI_INPUT_DENY_CMD = ['prompt', 'set timeout cli', 'quit']
 
 # Note: Only the last 3 lines are visible instantly on 80x25
@@ -214,20 +214,20 @@ SCREEN_YMAX = 100
 SCREEN_HPOS = 11
 
 HAPROXY_INFO_RE = {
-'software_name':    re.compile('^Name:\s*(?P<value>\S+)'),
-'software_version': re.compile('^Version:\s*(?P<value>\S+)'),
-'software_release': re.compile('^Release_date:\s*(?P<value>\S+)'),
-'nproc':            re.compile('^Nbproc:\s*(?P<value>\d+)'),
-'procn':            re.compile('^Process_num:\s*(?P<value>\d+)'),
-'pid':              re.compile('^Pid:\s*(?P<value>\d+)'),
-'uptime':           re.compile('^Uptime:\s*(?P<value>[\S ]+)$'),
-'maxconn':          re.compile('^Maxconn:\s*(?P<value>\d+)'),
-'curconn':          re.compile('^CurrConns:\s*(?P<value>\d+)'),
-'maxpipes':         re.compile('^Maxpipes:\s*(?P<value>\d+)'),
-'curpipes':         re.compile('^PipesUsed:\s*(?P<value>\d+)'),
-'tasks':            re.compile('^Tasks:\s*(?P<value>\d+)'),
-'runqueue':         re.compile('^Run_queue:\s*(?P<value>\d+)'),
-'node':             re.compile('^node:\s*(?P<value>\S+)'),
+'software_name':    re.compile(r'^Name:\s*(?P<value>\S+)'),
+'software_version': re.compile(r'^Version:\s*(?P<value>\S+)'),
+'software_release': re.compile(r'^Release_date:\s*(?P<value>\S+)'),
+'nproc':            re.compile(r'^Nbproc:\s*(?P<value>\d+)'),
+'procn':            re.compile(r'^Process_num:\s*(?P<value>\d+)'),
+'pid':              re.compile(r'^Pid:\s*(?P<value>\d+)'),
+'uptime':           re.compile(r'^Uptime:\s*(?P<value>[\S ]+)$'),
+'maxconn':          re.compile(r'^Maxconn:\s*(?P<value>\d+)'),
+'curconn':          re.compile(r'^CurrConns:\s*(?P<value>\d+)'),
+'maxpipes':         re.compile(r'^Maxpipes:\s*(?P<value>\d+)'),
+'curpipes':         re.compile(r'^PipesUsed:\s*(?P<value>\d+)'),
+'tasks':            re.compile(r'^Tasks:\s*(?P<value>\d+)'),
+'runqueue':         re.compile(r'^Run_queue:\s*(?P<value>\d+)'),
+'node':             re.compile(r'^node:\s*(?P<value>\S+)'),
 }
 
 HAPROXY_STAT_MAX_SERVICES = 1000
@@ -236,9 +236,9 @@ Warning: You have reached the stat parser limit! (%d)
 Use --filter to parse specific service stats only.
 ''' % HAPROXY_STAT_MAX_SERVICES
 HAPROXY_STAT_FILTER_RE = re.compile(
-        '^(?P<iid>-?\d+)\s+(?P<type>-?\d+)\s+(?P<sid>-?\d+)$')
+        r'^(?P<iid>-?\d+)\s+(?P<type>-?\d+)\s+(?P<sid>-?\d+)$')
 HAPROXY_STAT_PROXY_FILTER_RE = re.compile(
-        '^(?P<pxname>[a-zA-Z0-9_:\.\-]+)$')
+        r'^(?P<pxname>[a-zA-Z0-9_:\.\-]+)$')
 HAPROXY_STAT_COMMENT = '#'
 HAPROXY_STAT_SEP = ','
 HAPROXY_STAT_CSV = [