So this thing:
class BotoConnection(object):
def __new__(cls, profile_name, services):
if not hasattr(cls, '__instance__'):
cls.__instance__ = super(BotoConnection, cls)\
.__new__(cls, profile_name, services)