This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
pfwbged.policy/src/pfwbged/policy/__init__.py

14 lines
284 B
Python

# -*- coding: utf-8 -*-
"""Init and utils."""
import os
from zope.i18nmessageid import MessageFactory
_ = MessageFactory('pfwbged.policy')
POOL_SIZE = int(os.environ.get('GED_POOL_SIZE', 1000))
def initialize(context):
"""Initializer called when used as a Zope 2 product."""