summaryrefslogtreecommitdiff
path: root/paste/profilemiddleware.py
blob: 5f32adf81b8b00110787ee30cfffeab022546989 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# (c) 2005 Ian Bicking and contributors; written for Paste (http://pythonpaste.org)
# Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php
# Deprecated 18 Dec 2005
"""
Deprecated -- see ``paste.debug.profile``
"""
import warnings
from paste.debug.profile import *

__deprecated__ = True

warnings.warn(
    "The paste.profilemiddleware module has been moved to "
    "paste.debug.profile",
    DeprecationWarning, 2)