1
0
Fork 0
python-feedgen/feedgen/compat.py
Daniel Baumann 70c11d34fc
Adding upstream version 1.0.0.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-02-05 07:43:11 +01:00

8 lines
139 B
Python

# -*- coding: utf-8 -*-
import sys
if sys.version_info[0] >= 3:
string_types = str
else:
string_types = basestring # noqa: F821