diff options
author | Gregory P. Smith <greg@mad-scientist.com> | 2009-06-30 05:33:50 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@mad-scientist.com> | 2009-06-30 05:33:50 (GMT) |
commit | aa3b5b857791052e4e22a137f8315992c389f6f4 (patch) | |
tree | d0f4321a2311b34bb3c090b25a12715f592f5c2a /Lib/ntpath.py | |
parent | 84ec8d931404f4f9037242ec933fdcdcd4870114 (diff) | |
download | cpython-aa3b5b857791052e4e22a137f8315992c389f6f4.zip cpython-aa3b5b857791052e4e22a137f8315992c389f6f4.tar.gz cpython-aa3b5b857791052e4e22a137f8315992c389f6f4.tar.bz2 |
PendingDeprecationWarning -> DeprecationWarning. Both of these were
properly documented as being deprecated in 3.1.
Diffstat (limited to 'Lib/ntpath.py')
-rw-r--r-- | Lib/ntpath.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/ntpath.py b/Lib/ntpath.py index 2fd26b1..d16b664 100644 --- a/Lib/ntpath.py +++ b/Lib/ntpath.py @@ -233,7 +233,7 @@ def splitunc(p): """ import warnings warnings.warn("ntpath.splitunc is deprecated, use ntpath.splitdrive instead", - PendingDeprecationWarning) + DeprecationWarning) sep = _get_sep(p) if not p[1:2]: return p[:0], p # Drive letter present |