blob: 83f97fe331a4d966161b86f2e6a1d19f69b2a7c7 (
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.prints``
"""
import warnings
from paste.debug.prints import *
__deprecated__ = True
warnings.warn(
"The paste.printdebug module has been moved to "
"paste.debug.prints",
DeprecationWarning, 2)
|