whitelist next_layer for @concurrent

This commit is contained in:
Maximilian Hils 2015-09-07 16:05:16 +02:00
parent d002371d30
commit 8dfa15c2d4
2 changed files with 11 additions and 4 deletions

View File

@ -179,7 +179,8 @@ def concurrent(fn):
"error", "error",
"clientconnect", "clientconnect",
"serverconnect", "serverconnect",
"clientdisconnect"): "clientdisconnect",
"next_layer"):
def _concurrent(ctx, obj): def _concurrent(ctx, obj):
_handle_concurrent_reply(fn, obj, ctx, obj) _handle_concurrent_reply(fn, obj, ctx, obj)

View File

@ -83,7 +83,8 @@ setup(
"Topic :: Internet", "Topic :: Internet",
"Topic :: Internet :: WWW/HTTP", "Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: Proxy Servers", "Topic :: Internet :: Proxy Servers",
"Topic :: Software Development :: Testing"], "Topic :: Software Development :: Testing"
],
packages=find_packages(), packages=find_packages(),
include_package_data=True, include_package_data=True,
entry_points={ entry_points={
@ -94,8 +95,13 @@ setup(
'contentviews': [ 'contentviews': [
"pyamf>=0.6.1", "pyamf>=0.6.1",
"protobuf>=2.5.0", "protobuf>=2.5.0",
"cssutils>=1.0"], "cssutils>=1.0"
],
'examples': [ 'examples': [
"pytz", "pytz",
"harparser", "harparser",
"beautifulsoup4"]}) "beautifulsoup4",
"enum34"
]
}
)