summaryrefslogtreecommitdiff
path: root/Lib
diff options
context:
space:
mode:
Diffstat (limited to 'Lib')
-rw-r--r--Lib/distutils/command/build_ext.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/distutils/command/build_ext.py b/Lib/distutils/command/build_ext.py
index fadd6337f7..86513ea9e9 100644
--- a/Lib/distutils/command/build_ext.py
+++ b/Lib/distutils/command/build_ext.py
@@ -136,7 +136,7 @@ class build_ext (Command):
# we don't want to allow that anymore in the future
warn("'compiler' specifies the compiler type in build_ext. "
"If you want to get the compiler object itself, "
- "use 'compiler_obj'", PendingDeprecationWarning)
+ "use 'compiler_obj'", DeprecationWarning)
self._compiler = compiler
def _get_compiler(self):
@@ -144,7 +144,7 @@ class build_ext (Command):
# we don't want to allow that anymore in the future
warn("'compiler' specifies the compiler type in build_ext. "
"If you want to get the compiler object itself, "
- "use 'compiler_obj'", PendingDeprecationWarning)
+ "use 'compiler_obj'", DeprecationWarning)
return self._compiler
compiler = property(_get_compiler, _set_compiler)