[31317] in CVS-changelog-for-Kerberos-V5

home help back first fref pref prev next nref lref last post

krb5 commit: Fix Python regexp literals

daemon@ATHENA.MIT.EDU (ghudson@mit.edu)
Wed May 22 17:26:37 2024

From: ghudson@mit.edu
To: cvs-krb5@mit.edu
Message-Id: <20240522212631.7B2AE101A53@krbdev.mit.edu>
Date: Wed, 22 May 2024 17:26:31 -0400 (EDT)
MIME-Version: 1.0
Reply-To: krbdev@mit.edu
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: 7bit
Errors-To: cvs-krb5-bounces@mit.edu

https://github.com/krb5/krb5/commit/4b21b2e2821d3cb91042be09e0ebe09707a57d72
commit 4b21b2e2821d3cb91042be09e0ebe09707a57d72
Author: Arjun <pkillarjun@protonmail.com>
Date:   Thu May 9 20:47:08 2024 +0530

    Fix Python regexp literals
    
    Add missing "r" prefixes before literals using regexp escape
    sequences.
    
    [ghudson@mit.edu: split into separate commit; rewrote commit message]

 src/util/cstyle-file.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/util/cstyle-file.py b/src/util/cstyle-file.py
index 837fa05e1..56b1e32a8 100644
--- a/src/util/cstyle-file.py
+++ b/src/util/cstyle-file.py
@@ -208,7 +208,7 @@ def check_assignment_in_conditional(line, ln):
 
 
 def indent(line):
-    return len(re.match('\s*', line).group(0).expandtabs())
+    return len(re.match(r'\s*', line).group(0).expandtabs())
 
 
 def check_unbraced_flow_body(line, ln, lines):
@@ -220,8 +220,8 @@ def check_unbraced_flow_body(line, ln, lines):
     if m and (m.group(1) is None) != (m.group(3) is None):
         warn(ln, 'One arm of if/else statement braced but not the other')
 
-    if (re.match('\s*(if|else if|for|while)\s*\(.*\)$', line) or
-        re.match('\s*else$', line)):
+    if (re.match(r'\s*(if|else if|for|while)\s*\(.*\)$', line) or
+        re.match(r'\s*else$', line)):
         base = indent(line)
         # Look at the next two lines (ln is 1-based so lines[ln] is next).
         if indent(lines[ln]) > base and indent(lines[ln + 1]) > base:
_______________________________________________
cvs-krb5 mailing list
cvs-krb5@mit.edu
https://mailman.mit.edu/mailman/listinfo/cvs-krb5

home help back first fref pref prev next nref lref last post