mirror of https://github.com/svaarala/duktape.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
436 B
20 lines
436 B
12 years ago
|
#!/usr/bin/python
|
||
|
#
|
||
|
# $ for i in *.js; do python findnonascii.py $i; done
|
||
|
|
||
|
|
||
|
import os, sys
|
||
|
|
||
|
f = open(sys.argv[1], 'rb')
|
||
|
data = f.read()
|
||
|
f.close()
|
||
|
|
||
|
for linenum, linedata in enumerate(data.split('\n')):
|
||
|
non_ascii = False
|
||
|
for i in xrange(len(linedata)):
|
||
|
x = ord(linedata[i])
|
||
|
if x >= 0x80:
|
||
12 years ago
|
print '%s: non-ascii data on line %d, char index %d, value %d (0x%02x)' % \
|
||
|
(sys.argv[1], linenum + 1, i + 1, x, x)
|
||
12 years ago
|
non_ascii = True
|