aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/pytest/py3/patches/07-disable-translate-non-printable.patch
blob: 5ac6294dd0de804ff87b190248bf4c44aa9ca088 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
--- contrib/python/pytest/py3/_pytest/compat.py	(index) 
+++ contrib/python/pytest/py3/_pytest/compat.py	(working tree) 
@@ -234,7 +234,7 @@ if _PY3: 
         ret = _bytes_to_ascii(val) 
     else: 
         ret = val 
-    return _translate_non_printable(ret) 
+    return ret 
  
  
 @attr.s