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",
"clientconnect",
"serverconnect",
"clientdisconnect"):
"clientdisconnect",
"next_layer"):
def _concurrent(ctx, obj):
_handle_concurrent_reply(fn, obj, ctx, obj)

View File

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