1# -*- coding: utf-8 -*-
2"""
3    webapp2_extras.local_app
4    ~~~~~~~~~~~~~~~~~~~~~~~~
5
6    This module is deprecated. The functionality is now available
7    directly in webapp2.
8
9    Previously it implemented a WSGIApplication adapted for threaded
10    environments.
11
12    :copyright: 2011 by tipfy.org.
13    :license: Apache Sotware License, see LICENSE for details.
14"""
15import warnings
16
17import webapp2
18
19warnings.warn(DeprecationWarning(
20    'webapp2_extras.local_app is deprecated. webapp2.WSGIApplication is now '
21    'thread-safe by default when webapp2_extras.local is available.'),
22    stacklevel=1)
23
24WSGIApplication = webapp2.WSGIApplication
25