Commit 791d56f1 authored by Brett Cannon's avatar Brett Cannon

Cause buildtools to raise a DeprecationWarning.

parent c2aa09ad
...@@ -14,6 +14,9 @@ import macresource ...@@ -14,6 +14,9 @@ import macresource
import EasyDialogs import EasyDialogs
import shutil import shutil
import warnings
warnings.warn("the buildtools module is deprecated", DeprecationWarning, 2)
BuildError = "BuildError" BuildError = "BuildError"
......
...@@ -909,6 +909,8 @@ Windows ...@@ -909,6 +909,8 @@ Windows
Mac Mac
--- ---
- buildtools now raises a DeprecationWarning.
- Removed the macfs module. It had been deprecated since Python 2.5. This - Removed the macfs module. It had been deprecated since Python 2.5. This
lead to the deprecation of macostools.touched() as it relied solely on macfs lead to the deprecation of macostools.touched() as it relied solely on macfs
and was a no-op under OS X. and was a no-op under OS X.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment