work with -OO

This commit is contained in:
ndparker 2014-02-19 17:18:17 +01:00
parent 81dd49a8b9
commit 00e88d3a5c

View File

@ -60,7 +60,9 @@ Both python 2 and python 3 are supported.
.. _jsmin.c by Douglas Crockford:
http://www.crockford.com/javascript/jsmin.c
"""
__doc__ = __doc__.encode('ascii').decode('unicode_escape') # pylint: disable = W0622, C0301
if __doc__:
# pylint: disable = W0622
__doc__ = __doc__.encode('ascii').decode('unicode_escape')
__author__ = r"Andr\xe9 Malo".encode('ascii').decode('unicode_escape')
__docformat__ = "restructuredtext en"
__license__ = "Apache License, Version 2.0"