File: compat.py

package info (click to toggle)
python-feedgen 1.0.0-9
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 508 kB
  • sloc: python: 4,412; makefile: 175; javascript: 26
file content (8 lines) | stat: -rw-r--r-- 139 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
# -*- coding: utf-8 -*-

import sys

if sys.version_info[0] >= 3:
    string_types = str
else:
    string_types = basestring  # noqa: F821