root/galaxy-central/eggs/Paste-1.6-py2.6.egg/paste/__init__.py
リビジョン 3, 500 bytes (コミッタ: kohda, 14 年 前) |
---|
行番号 | |
---|---|
1 | # (c) 2005 Ian Bicking and contributors; written for Paste (http://pythonpaste.org) |
2 | # Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php |
3 | try: |
4 | import pkg_resources |
5 | pkg_resources.declare_namespace(__name__) |
6 | except ImportError: |
7 | # don't prevent use of paste if pkg_resources isn't installed |
8 | from pkgutil import extend_path |
9 | __path__ = extend_path(__path__, __name__) |
10 | |
11 | import modulefinder |
12 | for p in __path__: |
13 | modulefinder.AddPackagePath(__name__, p) |
Note: リポジトリブラウザについてのヘルプは TracBrowser
を参照してください。