- simplified utf8 code - added browser demo - added command line tool adler32 - fixed unicode baseline script (node 6 changed default array printing) - fixed performance tests (benchmark module changed behavior) - updated travis versions for test - miscellaneous adjustments to tooling
20 lines
438 B
Python
20 lines
438 B
Python
#!/usr/bin/env python
|
|
# make_unicode_crc.py -- generate baselines for tests
|
|
# Copyright (C) 2016-present SheetJS
|
|
|
|
from zlib import adler32
|
|
from array import array
|
|
from sys import argv, stderr, exit
|
|
from importlib import import_module
|
|
|
|
args = argv[1:]
|
|
|
|
if len(args) < 1:
|
|
print >>stderr, "usage: " + argv[0] + " <category>"
|
|
exit(1)
|
|
|
|
uctable = import_module("uctable_" + args[0]).uctable
|
|
|
|
for z in uctable:
|
|
print adler32(array('B', z));
|