summaryrefslogtreecommitdiff
path: root/Lib/plat-mac
diff options
context:
space:
mode:
authorBrett Cannon <bcannon@gmail.com>2007-05-31 19:40:42 +0000
committerBrett Cannon <bcannon@gmail.com>2007-05-31 19:40:42 +0000
commit96d7235e8fb49dd3e3fb944ca13e429d367e8378 (patch)
tree51a098899601d22f3c3d80898c860274a311d8a6 /Lib/plat-mac
parent2d08b74a260125abe0ab4619b8152ca0454ecaee (diff)
downloadcpython-96d7235e8fb49dd3e3fb944ca13e429d367e8378.tar.gz
Cause buildtools to raise a DeprecationWarning.
Diffstat (limited to 'Lib/plat-mac')
-rw-r--r--Lib/plat-mac/buildtools.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/Lib/plat-mac/buildtools.py b/Lib/plat-mac/buildtools.py
index c83e218024..f5dab88d9d 100644
--- a/Lib/plat-mac/buildtools.py
+++ b/Lib/plat-mac/buildtools.py
@@ -14,6 +14,9 @@ import macresource
import EasyDialogs
import shutil
+import warnings
+warnings.warn("the buildtools module is deprecated", DeprecationWarning, 2)
+
BuildError = "BuildError"