From: Fredrik Tolf Date: Tue, 13 Dec 2011 06:01:22 +0000 (+0100) Subject: python: Include `chain' in __all__ of ashd.wsgidir. X-Git-Tag: 0.10~2 X-Git-Url: http://www.dolda2000.com/gitweb/?p=ashd.git;a=commitdiff_plain;h=5c1a2105e0dda1de8eefc3f3fd83c76f43583c33 python: Include `chain' in __all__ of ashd.wsgidir. --- diff --git a/python/ashd/wsgidir.py b/python/ashd/wsgidir.py index ada5282..5711ee6 100644 --- a/python/ashd/wsgidir.py +++ b/python/ashd/wsgidir.py @@ -36,7 +36,7 @@ functions, you may want to use the getmod() function in this module. import os, threading, types import wsgiutil -__all__ = ["application", "wmain", "getmod", "cachedmod"] +__all__ = ["application", "wmain", "getmod", "cachedmod", "chain"] class cachedmod(object): """Cache entry for modules loaded by getmod() diff --git a/python3/ashd/wsgidir.py b/python3/ashd/wsgidir.py index 6b7ece7..4603cc2 100644 --- a/python3/ashd/wsgidir.py +++ b/python3/ashd/wsgidir.py @@ -36,7 +36,7 @@ functions, you may want to use the getmod() function in this module. import os, threading, types, importlib from . import wsgiutil -__all__ = ["application", "wmain", "getmod", "cachedmod"] +__all__ = ["application", "wmain", "getmod", "cachedmod", "chain"] class cachedmod(object): """Cache entry for modules loaded by getmod()