Blame | Last modification | View Log | RSS feed
# -*- coding: utf-8 -*-"""The application's Globals object"""__all__ = ['Globals']class Globals(object):"""Container for objects available throughout the life of the application.One instance of Globals is created during application initialization andis available during requests via the 'app_globals' variable."""def __init__(self):"""Do nothing, by default."""pass