diff options
| author | Tarek Ziadé <ziade.tarek@gmail.com> | 2009-07-09 07:42:42 (GMT) |
|---|---|---|
| committer | Tarek Ziadé <ziade.tarek@gmail.com> | 2009-07-09 07:42:42 (GMT) |
| commit | 00490f2754a4993c55d52f1612535964409d3cf1 (patch) | |
| tree | 794465183ad92d59556fdfafff6bd94e18eb2e55 /Lib/distutils/command/build_ext.py | |
| parent | 00e1f63c6e4c6c356beef25bcc95e713075cec27 (diff) | |
| download | cpython-00490f2754a4993c55d52f1612535964409d3cf1.zip cpython-00490f2754a4993c55d52f1612535964409d3cf1.tar.gz cpython-00490f2754a4993c55d52f1612535964409d3cf1.tar.bz2 | |
PendingDeprecationWarning -> DeprecationWarning in build_ext
Diffstat (limited to 'Lib/distutils/command/build_ext.py')
| -rw-r--r-- | Lib/distutils/command/build_ext.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/distutils/command/build_ext.py b/Lib/distutils/command/build_ext.py index fadd633..86513ea 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) |
