From 5c1a2105e0dda1de8eefc3f3fd83c76f43583c33 Mon Sep 17 00:00:00 2001 From: Fredrik Tolf Date: Tue, 13 Dec 2011 07:01:22 +0100 Subject: [PATCH] python: Include `chain' in __all__ of ashd.wsgidir. --- python/ashd/wsgidir.py | 2 +- python3/ashd/wsgidir.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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() -- 2.11.0