From cd1346f4fd031c80e40dd0d369f064d8742c4aab Mon Sep 17 00:00:00 2001 From: Carsten Schoenert Date: Thu, 18 Jul 2024 16:50:22 +0200 Subject: [PATCH] python: Use raw-strings expressions Python 3.12 is now more pedantic about the used string regexp syntax in re.* functions. Gbp-Pq: Topic fixes Gbp-Pq: Name python-Use-raw-strings-expressions.patch --- eeschema/python_scripts/kicad_netlist_reader.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/eeschema/python_scripts/kicad_netlist_reader.py b/eeschema/python_scripts/kicad_netlist_reader.py index 1a4146eb..5d105d67 100644 --- a/eeschema/python_scripts/kicad_netlist_reader.py +++ b/eeschema/python_scripts/kicad_netlist_reader.py @@ -745,7 +745,7 @@ class netlist(): # the normal sort would place 100 before 99 since it only would look at the first digit. def sortKey( str ): return [ int(t) if t.isdigit() else t.lower() - for t in re.split( '(\d+)', str ) ] + for t in re.split( r'(\d+)', str ) ] ret.sort(key=lambda g: sortKey(g.getRef())) @@ -791,7 +791,7 @@ class netlist(): # the normal sort would place 100 before 99 since it only would look at the first digit. def sortKey( str ): return [ int(t) if t.isdigit() else t.lower() - for t in re.split( '(\d+)', str ) ] + for t in re.split( r'(\d+)', str ) ] for g in groups: #g = sorted(g, key=lambda g: sortKey(g.getRef())) -- 2.30.2