Skip to content
GitLab
Explore
Sign in
Commits on Source (2)
Patch the conversion of unicode to string if already string
· 2da95801
Marco De Donno
authored
Oct 08, 2019
2da95801
Remove the automatic import of all functions
· 0fe479c5
Marco De Donno
authored
Oct 08, 2019
0fe479c5
Hide whitespace changes
Inline
Side-by-side
MDmisc/string.py
View file @
0fe479c5
...
...
@@ -126,8 +126,11 @@ def split_no_empty( data, string ):
return
[
value
for
value
in
data
.
split
(
string
)
if
value
!=
""
]
def
unicode2str
(
data
):
if
isinstance
(
data
,
basestring
):
return
str
(
data
.
encode
(
'
utf-8
'
).
strip
()
)
if
type
(
data
)
==
str
:
return
data
elif
type
(
data
)
==
unicode
:
return
str
(
data
.
encode
(
'
utf-8
'
,
'
ignore
'
).
strip
()
)
elif
isinstance
(
data
,
collections
.
Mapping
):
return
dict
(
map
(
unicode2str
,
data
.
iteritems
()
)
)
...
...
__init__.py
View file @
0fe479c5
#!/usr/bin/python
# -*- coding: UTF-8 -*-
from
.MDmisc.__init__
import
*