Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(2) | Call(1) | Derive(0) | Import(1)
def babel_patched_load(name, merge_inherited=True): # Load additional languages into the babel # cache. We do this so we can add Haitian Creole # using french as a model. _cache_lock.acquire() try: data = _cache.get(name) if not data: # Load inherited data if name == 'root' or not merge_inherited: data = {} else: parts = name.split('_') if len(parts) == 1: parent = 'root' else: parent = '_'.join(parts[:-1]) data = load(parent).copy() filename = os.path.join(_mydirname, '%s.dat' % name) fileobj = open(filename, 'rb') try: if name != 'root' and merge_inherited: merge(data, pickle.load(fileobj)) else: data = pickle.load(fileobj) _cache[name] = data finally: fileobj.close() return data finally: _cache_lock.release()
import zim_views import settings_views from babel_patch import babel_patched_load
def configure_babel(app): # Load additional languages into the babel # cache. We do this so we can add Haitian Creole # using french as a model. babel_patched_load('cpf')