1# -*- coding: utf-8 -*- 2""" 3 webapp2_extras.sessions_memcache 4 ================================ 5 6 Extended sessions stored in memcache. 7 8 App Engine-specific modules were moved to webapp2_extras.appengine. 9 This module is here for compatibility purposes. 10 11 :copyright: 2011 by tipfy.org. 12 :license: Apache Sotware License, see LICENSE for details. 13""" 14import warnings 15 16warnings.warn(DeprecationWarning( 17 'webapp2_extras.sessions_memcache is deprecated. ' 18 'App Engine-specific modules were moved to webapp2_extras.appengine.'), 19 stacklevel=1) 20from webapp2_extras.appengine.sessions_memcache import * 21