Module documentation for c14n.py.
This commit is contained in:
parent
8b3833b443
commit
7c0b1e4ed0
|
@ -1,6 +1,8 @@
|
||||||
|
''' XML canonicalisation methods (for XEP-0116) '''
|
||||||
|
# FIXME: Add licence, copyright
|
||||||
|
|
||||||
from simplexml import ustr
|
from simplexml import ustr
|
||||||
|
|
||||||
# XML canonicalisation methods (for XEP-0116)
|
|
||||||
def c14n(node):
|
def c14n(node):
|
||||||
s = "<" + node.name
|
s = "<" + node.name
|
||||||
if node.namespace:
|
if node.namespace:
|
||||||
|
|
Loading…
Reference in New Issue