summarylogtreecommitdiffstats
path: root/flup_python3.patch
blob: 8d0b9374324ef483a42b3888965fb6929e7e15b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
--- a/lib/python3.8/site-packages/flup-1.0.3-py3.8.egg/flup/server/paste_factory.py	2019-06-22 14:36:32.738706639 -0400
+++ b/lib/python3.8/site-packages/flup-1.0.3-py3.8.egg/flup/server/paste_factory.py	2019-06-22 14:51:07.064597983 -0400
@@ -4,7 +4,7 @@
 from flup.server import NoDefault

 def asbool(obj):
-    if isinstance(obj, (str, unicode)):
+    if isinstance(obj, (bytes, str)):
         obj = obj.strip().lower()
         if obj in ['true', 'yes', 'on', 'y', 't', '1']:
             return True
@@ -16,7 +16,7 @@
     return bool(obj)

 def aslist(obj, sep=None, strip=True):
-    if isinstance(obj, (str, unicode)):
+    if isinstance(obj, (bytes, str)):
         lst = obj.split(sep)
         if strip:
             lst = [v.strip() for v in lst]