diff options
author | Florent Xicluna <florent.xicluna@gmail.com> | 2010-03-07 12:14:25 (GMT) |
---|---|---|
committer | Florent Xicluna <florent.xicluna@gmail.com> | 2010-03-07 12:14:25 (GMT) |
commit | 1f3b4e12e8ba9cd896625ba02ea1ab6849ca3a07 (patch) | |
tree | 42dc10540da9b1aff1d4e6cef51e4c11ce4f5b47 /Lib/warnings.py | |
parent | 2a4ab816332a67150fcc8ece255fb1ee8e66af83 (diff) | |
download | cpython-1f3b4e12e8ba9cd896625ba02ea1ab6849ca3a07.zip cpython-1f3b4e12e8ba9cd896625ba02ea1ab6849ca3a07.tar.gz cpython-1f3b4e12e8ba9cd896625ba02ea1ab6849ca3a07.tar.bz2 |
Fix some py3k warnings in the standard library.
Diffstat (limited to 'Lib/warnings.py')
-rw-r--r-- | Lib/warnings.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/warnings.py b/Lib/warnings.py index 70b3d43..134ba13 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 |