Mod: Open header files with io.open
for Python 2/3 compatibility.
This commit is contained in:
parent
4f2aeeffaa
commit
7127634aa0
@ -1,7 +1,7 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
|
|
||||||
from __future__ import print_function
|
from __future__ import print_function
|
||||||
import os, sys, re, string
|
import os, sys, re, string, io
|
||||||
|
|
||||||
# the list only for debugging. The real list, used in the real OpenCV build, is specified in CMakeLists.txt
|
# the list only for debugging. The real list, used in the real OpenCV build, is specified in CMakeLists.txt
|
||||||
opencv_hdr_list = [
|
opencv_hdr_list = [
|
||||||
@ -734,7 +734,7 @@ class CppHeaderParser(object):
|
|||||||
"""
|
"""
|
||||||
self.hname = hname
|
self.hname = hname
|
||||||
decls = []
|
decls = []
|
||||||
f = open(hname, "rt")
|
f = io.open(hname, 'rt', encoding='utf-8')
|
||||||
linelist = list(f.readlines())
|
linelist = list(f.readlines())
|
||||||
f.close()
|
f.close()
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user