datatracker/ietf/utils/__init__.py
Henrik Levkowetz 4a289b821f Minor cleanup based on pyflakes feedback
- Legacy-Id: 188
2007-05-31 09:44:12 +00:00

15 lines
464 B
Python

from listop import orl, flattenl
from log import log
from cache_foreign_key import FKAsOneToOne
from templated_form import makeTemplatedForm
makeFormattingForm = makeTemplatedForm
__all__ = ["orl", "flattenl", "log", "FKAsOneToOne", "makeTemplatedForm", "makeFormattingForm"]
# See http://docs.python.org/tut/node8.html regarding the use of __all__ and
# also regarding the practice of using "from xxx import *" in interactive
# sessions vs. in source files.