mirror of
https://github.com/valitydev/thrift.git
synced 2024-11-07 10:48:51 +00:00
10308cb975
This closes #832
25 lines
552 B
Python
25 lines
552 B
Python
import os
|
|
import sys
|
|
|
|
if sys.version_info[0] == 2:
|
|
_ENCODE = sys.getfilesystemencoding()
|
|
|
|
def path_join(*args):
|
|
bin_args = map(lambda a: a.decode(_ENCODE), args)
|
|
return os.path.join(*bin_args).encode(_ENCODE)
|
|
|
|
def str_join(s, l):
|
|
bin_args = map(lambda a: a.decode(_ENCODE), l)
|
|
b = s.decode(_ENCODE)
|
|
return b.join(bin_args).encode(_ENCODE)
|
|
|
|
logfile_open = open
|
|
|
|
else:
|
|
|
|
path_join = os.path.join
|
|
str_join = str.join
|
|
|
|
def logfile_open(*args):
|
|
return open(*args, errors='replace')
|