1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
import platform
WIN = platform.system() == 'Windows'
try: # pragma: no cover
import __pypy__
PYPY = True
except BaseException: # pragma: no cover
__pypy__ = None
PYPY = False
def text_(s, encoding='latin-1', errors='strict'):
""" If ``s`` is an instance of ``bytes``, return
``s.decode(encoding, errors)``, otherwise return ``s``"""
if isinstance(s, bytes):
return s.decode(encoding, errors)
return s
def bytes_(s, encoding='latin-1', errors='strict'):
""" If ``s`` is an instance of ``str``, return
``s.encode(encoding, errors)``, otherwise return ``s``"""
if isinstance(s, str):
return s.encode(encoding, errors)
return s
def ascii_native_(s):
"""
If ``s`` is an instance of ``str``, return
``s.encode('ascii')``, otherwise return ``str(s, 'ascii', 'strict')``
"""
if isinstance(s, str):
s = s.encode('ascii')
return str(s, 'ascii', 'strict')
def native_(s, encoding='latin-1', errors='strict'):
""" If ``s`` is an instance of ``str``, return
``s``, otherwise return ``str(s, encoding, errors)``
"""
if isinstance(s, str):
return s
return str(s, encoding, errors)
|