2010-08-04 18:41:37 +00:00
|
|
|
"""
|
2010-01-29 10:11:45 +00:00
|
|
|
|
2010-08-04 18:41:37 +00:00
|
|
|
"""
|
2010-01-29 10:11:45 +00:00
|
|
|
|
2010-08-04 18:41:37 +00:00
|
|
|
import sys
|
|
|
|
|
|
|
|
|
|
|
|
# Import the correct ToString class based on the Python version.
|
|
|
|
if sys.version_info < (3, 0):
|
|
|
|
from sleekxmpp.xmlstream.tostring.tostring26 import ToString
|
|
|
|
else:
|
|
|
|
from sleekxmpp.xmlstream.tostring.tostring import ToString
|
|
|
|
|
|
|
|
__all__ = ['ToString']
|