__init__.py 269 B

12345678
  1. import warnings
  2. warnings.warn(
  3. 'wtforms.ext.appengine is deprecated, and will be removed in WTForms 3.0. '
  4. 'The package has been split out into its own package, wtforms-appengine: '
  5. 'https://github.com/wtforms/wtforms-appengine ',
  6. DeprecationWarning
  7. )