You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
170 B

4 years ago
  1. try:
  2. basestring = basestring
  3. except NameError:
  4. basestring = str
  5. try:
  6. from StringIO import StringIO as BytesIO
  7. except ImportError:
  8. from io import BytesIO