Sign in
android
/
platform
/
external
/
python
/
mako
/
5dfcfac
/
.
/
test
/
templates
/
read_unicode_py3k.html
blob: c94399e7b6fcebb7740dd0d06e197b22b09c4f8d [
file
]
<%
try
:
file_content
=
open
(
path
,
encoding
=
'utf-8'
,
errors
=
'ignore'
)
except
:
raise
"Should never execute here"
doc_content
=
''
.
join
(
file_content
.
readlines
())
file_content
.
close
()
%>
${bytes(doc_content, encoding='utf-8')}