summaryrefslogtreecommitdiffstats
path: root/lib/python/helpers.py
blob: 1bfcf9437567247e3cfb325ab091c797ee4c1e2d (plain) (blame)
1
2
3
4
5
6
7
# helpers.py -- utility functions that don't belong elsewhere

def isstring(s):
    try:
        return isinstance(s, basestring)
    except NameError:
        return isinstance(s, str)

© 2014-2024 Faster IT GmbH | imprint | privacy policy