summaryrefslogtreecommitdiffstats
path: root/Lib/warnings.py
diff options
context:
space:
mode:
authorEzio Melotti <ezio.melotti@gmail.com>2010-08-02 21:35:06 (GMT)
committerEzio Melotti <ezio.melotti@gmail.com>2010-08-02 21:35:06 (GMT)
commit26dfaacddac951157c9e30304049f6625f0deebf (patch)
tree05a417bcff94f321c0d4fecfa35e3c7455400786 /Lib/warnings.py
parent1c9972e6dd50855a3aa97d60418f583a8b40a34d (diff)
downloadcpython-26dfaacddac951157c9e30304049f6625f0deebf.zip
cpython-26dfaacddac951157c9e30304049f6625f0deebf.tar.gz
cpython-26dfaacddac951157c9e30304049f6625f0deebf.tar.bz2
Merged revisions 78757 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r78757 | florent.xicluna | 2010-03-07 14:14:25 +0200 (Sun, 07 Mar 2010) | 2 lines Fix some py3k warnings in the standard library. ........
Diffstat (limited to 'Lib/warnings.py')
-rw-r--r--Lib/warnings.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/warnings.py b/Lib/warnings.py
index 59011ca..a071aa1 100644
--- a/Lib/warnings.py
+++ b/Lib/warnings.py
@@ -29,7 +29,7 @@ def _show_warning(message, category, filename, lineno, file=None, line=None):
file.write(formatwarning(message, category, filename, lineno, line))
except IOError:
pass # the file (probably stderr) is invalid - this warning gets lost.
-# Keep a worrking version around in case the deprecation of the old API is
+# Keep a working version around in case the deprecation of the old API is
# triggered.
showwarning = _show_warning