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