commit | 791d56f1f71a9cc02993063ea1545d7ae8822bf2 | [log] [tgz] |
---|---|---|
author | Brett Cannon <bcannon@gmail.com> | Thu May 31 19:40:42 2007 +0000 |
committer | Brett Cannon <bcannon@gmail.com> | Thu May 31 19:40:42 2007 +0000 |
tree | 8b3132f39918c48b2a5222aeaaee83a7cc3e99f8 | |
parent | c2aa09ad8055ba3e03da297608552d04b42e9aac [diff] [blame] |
Cause buildtools to raise a DeprecationWarning.
diff --git a/Lib/plat-mac/buildtools.py b/Lib/plat-mac/buildtools.py index c83e218..f5dab88 100644 --- a/Lib/plat-mac/buildtools.py +++ b/Lib/plat-mac/buildtools.py
@@ -14,6 +14,9 @@ import EasyDialogs import shutil +import warnings +warnings.warn("the buildtools module is deprecated", DeprecationWarning, 2) + BuildError = "BuildError"