summaryrefslogtreecommitdiff
path: root/Lib/posixpath.py
diff options
context:
space:
mode:
authorPhilip Jenvey <pjenvey@underboss.org>2009-05-08 02:47:02 +0000
committerPhilip Jenvey <pjenvey@underboss.org>2009-05-08 02:47:02 +0000
commit54cea3b1a5f0f5673fb08addc509d130b369c629 (patch)
treef3e1804acef63f0153b54432887d76c07b1b3897 /Lib/posixpath.py
parent476a64213ff7e4c3524303884858b9a43a408185 (diff)
downloadcpython-git-54cea3b1a5f0f5673fb08addc509d130b369c629.tar.gz
Merged revisions 72458 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r72458 | philip.jenvey | 2009-05-07 19:28:39 -0700 (Thu, 07 May 2009) | 2 lines #4351: more appropriate DeprecationWarning stacklevels ........
Diffstat (limited to 'Lib/posixpath.py')
-rw-r--r--Lib/posixpath.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Lib/posixpath.py b/Lib/posixpath.py
index 4f3519b2d0..cdce5afede 100644
--- a/Lib/posixpath.py
+++ b/Lib/posixpath.py
@@ -216,7 +216,8 @@ def walk(top, func, arg):
beyond that arg is always passed to func. It can be used, e.g., to pass
a filename pattern, or a mutable object designed to accumulate
statistics. Passing None for arg is common."""
- warnings.warnpy3k("In 3.x, os.path.walk is removed in favor of os.walk.")
+ warnings.warnpy3k("In 3.x, os.path.walk is removed in favor of os.walk.",
+ stacklevel=2)
try:
names = os.listdir(top)
except os.error: