util.py 327 B

123456789101112131415
  1. # Copyright (c) Jupyter Development Team.
  2. # Distributed under the terms of the Modified BSD License.
  3. # six is not a direct dependency of this module
  4. # This replicates six.text_type
  5. try:
  6. text_type = unicode
  7. except NameError:
  8. text_type = str
  9. try:
  10. string_types = basestring
  11. except NameError:
  12. string_types = str