aboutsummaryrefslogtreecommitdiffstats
path: root/pathod/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'pathod/utils.py')
-rw-r--r--pathod/utils.py18
1 files changed, 0 insertions, 18 deletions
diff --git a/pathod/utils.py b/pathod/utils.py
index fe12f541..3276198a 100644
--- a/pathod/utils.py
+++ b/pathod/utils.py
@@ -2,8 +2,6 @@ import os
import sys
import netlib.utils
-from netlib.utils import bytes_to_escaped_str
-
class MemBool(object):
@@ -28,22 +26,6 @@ def parse_anchor_spec(s):
return tuple(s.split("=", 1))
-def xrepr(s):
- return repr(s)[1:-1]
-
-
-def escape_unprintables(s):
- """
- Like inner_repr, but preserves line breaks.
- """
- s = s.replace(b"\r\n", b"PATHOD_MARKER_RN")
- s = s.replace(b"\n", b"PATHOD_MARKER_N")
- s = bytes_to_escaped_str(s)
- s = s.replace("PATHOD_MARKER_RN", "\n")
- s = s.replace("PATHOD_MARKER_N", "\n")
- return s
-
-
data = netlib.utils.Data(__name__)