| Home | Trees | Indices | Help |
|
|---|
|
|
1 # -*- coding: utf-8 -*-
2 #
3 # repoze.who.plugins.ldap, LDAP authentication for WSGI applications.
4 # Copyright (C) 2008-2010 by Gustavo Narea <http://gustavonarea.net/>
5 #
6 # This file is part of repoze.who.plugins.ldap
7 # <http://code.gustavonarea.net/repoze.who.plugins.ldap/>
8 #
9 # This software is subject to the provisions of the BSD-like license at
10 # http://www.repoze.org/LICENSE.txt. A copy of the license should accompany
11 # this distribution. THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL
12 # EXPRESS OR IMPLIED WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO,
13 # THE IMPLIED WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND
14 # FITNESS FOR A PARTICULAR PURPOSE.
15
16 # See http://peak.telecommunity.com/DevCenter/setuptools#namespace-packages
17 try:
18 __import__('pkg_resources').declare_namespace(__name__)
19 except ImportError:
20 from pkgutil import extend_path
21 __path__ = extend_path(__path__, __name__)
22
| Home | Trees | Indices | Help |
|
|---|
| Generated by Epydoc 3.0.1 on Thu Jun 3 10:41:58 2010 | http://epydoc.sourceforge.net |