git.ithinksw.org
/
~jspiros
/
python-ebml.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Fixed handling of null-termination in the string and unicode string readers.
[~jspiros/python-ebml.git]
/
ebml
/
schema
/
matroska.py
1
import os.path
2
from .specs import parse_specdata
3
4
5
_Elements, Matroska = parse_specdata(os.path.join(os.path.dirname(__file__), 'matroska.xml'), 'Matroska')
6
7
8
for name, element in _Elements.iteritems():
9
globals()[name] = element