summaryrefslogtreecommitdiff
path: root/Lib/ntpath.py
diff options
context:
space:
mode:
authorGregory P. Smith <greg@mad-scientist.com>2009-06-30 05:33:50 +0000
committerGregory P. Smith <greg@mad-scientist.com>2009-06-30 05:33:50 +0000
commitb2fc1d36eb93f5d6fa9ece837ead20a0f9b09136 (patch)
tree3764caf7a0b6bf285e75fab304738e145aa67032 /Lib/ntpath.py
parent4753a4482d69b85e0d27714f0aeeac1076c49d08 (diff)
downloadcpython-b2fc1d36eb93f5d6fa9ece837ead20a0f9b09136.tar.gz
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.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/ntpath.py b/Lib/ntpath.py
index 2fd26b1f3d..d16b6646ee 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