Kaydet (Commit) 00490f27 authored tarafından Tarek Ziadé's avatar Tarek Ziadé

PendingDeprecationWarning -> DeprecationWarning in build_ext

üst 00e1f63c
......@@ -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)
......
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