diff options
author | Tarek Ziadé <ziade.tarek@gmail.com> | 2009-07-09 07:46:10 (GMT) |
---|---|---|
committer | Tarek Ziadé <ziade.tarek@gmail.com> | 2009-07-09 07:46:10 (GMT) |
commit | 26f0c645879c27f94fb053bb5436350fb416472e (patch) | |
tree | a8b9fd78267811c7068baec8bc930020c65b00e9 /Lib/distutils/command/build_ext.py | |
parent | 556934b385b287add684c5022cfae64c93c5e0eb (diff) | |
download | cpython-26f0c645879c27f94fb053bb5436350fb416472e.zip cpython-26f0c645879c27f94fb053bb5436350fb416472e.tar.gz cpython-26f0c645879c27f94fb053bb5436350fb416472e.tar.bz2 |
Merged revisions 73901 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r73901 | tarek.ziade | 2009-07-09 09:42:42 +0200 (Thu, 09 Jul 2009) | 1 line
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 d8bb251..6f90499 100644 --- a/Lib/distutils/command/build_ext.py +++ b/Lib/distutils/command/build_ext.py @@ -134,7 +134,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): @@ -142,7 +142,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) |