[Python-checkins] cpython: Fix a typo.

ross.lagerwall python-checkins at python.org
Sun Feb 12 10:15:29 CET 2012


http://hg.python.org/cpython/rev/b27a28a30612
changeset:   74886:b27a28a30612
user:        Ross Lagerwall <rosslagerwall at gmail.com>
date:        Sun Feb 12 09:02:01 2012 +0200
summary:
  Fix a typo.

files:
  Lib/test/test_subprocess.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Lib/test/test_subprocess.py b/Lib/test/test_subprocess.py
--- a/Lib/test/test_subprocess.py
+++ b/Lib/test/test_subprocess.py
@@ -471,7 +471,7 @@
         self.assertStderrEqual(stderr.encode(), b"pineapple\npear\n")
 
     def test_communicate_timeout_large_ouput(self):
-        # Test a expring timeout while the child is outputting lots of data.
+        # Test an expiring timeout while the child is outputting lots of data.
         p = subprocess.Popen([sys.executable, "-c",
                               'import sys,os,time;'
                               'sys.stdout.write("a" * (64 * 1024));'

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list