Skip to content

Commit

Permalink
Update classifiers and fix docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
amol- committed May 26, 2014
1 parent ba39b86 commit 521f1af
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
9 changes: 8 additions & 1 deletion setup.py
Expand Up @@ -62,7 +62,14 @@
version=version,
description=description,
long_description=long_description,
classifiers=[],
classifiers=[
'Intended Audience :: Developers',
'Environment :: Web Environment',
'Programming Language :: Python :: 3',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: WSGI',
],
keywords='turbogears',
author=author,
author_email=email,
Expand Down
6 changes: 1 addition & 5 deletions tg/configuration/app_config.py
Expand Up @@ -36,18 +36,14 @@ class DispatchingConfigWrapper(DictMixin):
"""Wrapper for the Dispatching configuration.
Simple wrapper for the DispatchingConfig object that provides attribute
style access to the Pylons config dictionary.
style access to the config dictionary.
This class works by proxying all attribute and dictionary access to
the underlying DispatchingConfig config object, which is an application local
proxy that allows for multiple TG2 applications to live
in the same process simultaneously, but to always get the right
config data for the application that's requesting them.
Sites, with seeking to maximize needs may prefer to use the Pylons
config stacked object proxy directly, using just dictionary style
access, particularly whenever config is checked on a per-request basis.
"""

def __init__(self, dict_to_wrap):
Expand Down

0 comments on commit 521f1af

Please sign in to comment.