Source code for jadi.common

import logging

log = logging.getLogger('jadi')


[docs]def get_fqdn(cls): ''' Returns a fully-qualified name for the given class ''' return cls.__module__ + '.' + cls.__name__

Comments

comments powered by Disqus