--> -->
<type 'exceptions.IOError'> | Python 2.7.13: /usr/bin/python Sun Dec 22 19:18:39 2024 |
A problem occurred in a Python script. Here is the sequence of
function calls leading up to the error, in the order they occurred.
/var/www/inamidst.com/services/unicode.cgi in main() |
70 name(form('name'))
|
71 elif form.exists('char'):
|
=> 72 char(form('char'))
|
73 else: homepage()
|
74
|
global char = <function char>, global form = FieldStorage(None, None, [MiniFieldStorage('char', '\xe2\x80\xbd')]) |
/var/www/inamidst.com/services/unicode.cgi in char(bytes='\xe2\x80\xbd') |
51 for character in bytes.decode('utf-8'):
|
52 pattern = r'^%04X\b' % ord(character)
|
=> 53 u(pattern)
|
54
|
55 def homepage():
|
global u = <function u>, pattern = r'^203D\b' |
/var/www/inamidst.com/services/unicode.cgi in u(pattern=r'^203D\b') |
16 return
|
17
|
=> 18 f = open('../odds/UnicodeData.txt')
|
19 for line in f:
|
20 if r_pattern.search(line):
|
f undefined, builtin open = <built-in function open> |
<type 'exceptions.IOError'>: [Errno 2] No such file or directory: '../odds/UnicodeData.txt'
args =
(2, 'No such file or directory')
errno =
2
filename =
'../odds/UnicodeData.txt'
message =
''
strerror =
'No such file or directory'