]> gitweb.michael.orlitzky.com - djbdns-logparse.git/commitdiff
bin/djbdns-logparse.py: make all docstrings raw to avoid surprises.
authorMichael Orlitzky <michael@orlitzky.com>
Fri, 16 Sep 2022 18:46:26 +0000 (14:46 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Fri, 16 Sep 2022 18:46:26 +0000 (14:46 -0400)
bin/djbdns-logparse.py

index 40a301200d8a84cadd253810db8684bb0b304844..c6b98722c6899ca0bbdf4fcbdaf86c9289492dfc 100755 (executable)
@@ -1,5 +1,5 @@
 #!/usr/bin/python3
-"""
+r"""
 Convert tinydns and dnscache logs to human-readable form
 """
 
@@ -80,7 +80,7 @@ query_drop_reason = {
 
 
 def convert_ip(ip : str) -> str:
-    """
+    r"""
     Convert a hex string representing an IP address to
     human-readable form.
 
@@ -218,7 +218,7 @@ def decode_type(words : list, i : int):
     words[i] = query_type.get(int(qt), qt)
 
 def handle_dnscache_log(line : str) -> typing.Optional[str]:
-    """
+    r"""
     Handle a single log line if it matches the ``dnscache_log_re`` regex.
 
     Parameters
@@ -343,7 +343,7 @@ def handle_dnscache_log(line : str) -> typing.Optional[str]:
 
 
 def handle_tinydns_log(line : str) -> typing.Optional[str]:
-    """
+    r"""
     Handle a single log line if it matches the ``tinydns_log_re`` regex.
 
     Parameters