|
@@ -8,6 +8,11 @@ from __future__ import (nested_scopes, generators, division, absolute_import,
|
|
with_statement, print_function, unicode_literals)
|
|
with_statement, print_function, unicode_literals)
|
|
import re
|
|
import re
|
|
|
|
|
|
|
|
+try:
|
|
|
|
+ from builtins import unicode
|
|
|
|
+except ImportError:
|
|
|
|
+ unicode = str
|
|
|
|
+
|
|
from grass.pygrass.modules.interface.docstring import docstring_property
|
|
from grass.pygrass.modules.interface.docstring import docstring_property
|
|
from grass.pygrass.modules.interface.read import GETTYPE, element2dict, DOC
|
|
from grass.pygrass.modules.interface.read import GETTYPE, element2dict, DOC
|
|
|
|
|