Merge branch 'appdispatch-docs'

This commit is contained in:
Armin Ronacher 2011-03-15 12:07:32 -04:00
commit dd75cc9e28
3 changed files with 159 additions and 0 deletions

View file

@ -47,6 +47,10 @@ SECRET_KEY = 'devkey'
def catch_warnings():
"""Catch warnings in a with block in a list"""
import warnings
# make sure deprecation warnings are active in tests
warnings.simplefilter('default', category=DeprecationWarning)
filters = warnings.filters
warnings.filters = filters[:]
old_showwarning = warnings.showwarning