Skip to content

Commit

Permalink
make new resources classes public
Browse files Browse the repository at this point in the history
These classes are documented as members of aiohttp.web, but they aren't
because they are not exported in __all__:
AbstractResource, ResourceAdapter, AbstractRoute, ResourceRoute
  • Loading branch information
rutsky committed Feb 5, 2016
1 parent 822e909 commit 55b184c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion aiohttp/web_urldispatcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@


__all__ = ('UrlDispatcher', 'UrlMappingMatchInfo',
'Resource', 'PlainResource', 'DynamicResource',
'AbstractResource', 'Resource', 'PlainResource', 'DynamicResource',
'ResourceAdapter',
'AbstractRoute', 'ResourceRoute',
'Route', 'PlainRoute', 'DynamicRoute', 'StaticRoute', 'View')


Expand Down

0 comments on commit 55b184c

Please sign in to comment.