diff options
author | Ross Lagerwall <rosslagerwall@gmail.com> | 2012-02-12 07:02:01 (GMT) |
---|---|---|
committer | Ross Lagerwall <rosslagerwall@gmail.com> | 2012-02-12 07:02:01 (GMT) |
commit | 003c7a3fcaafcddc149a528cb79a71c6050893e5 (patch) | |
tree | 77f1930edb62218c5225c59b3822cd1e65cc625f | |
parent | ab66d2a6cbe1484244f98298c6cdd0cb65042842 (diff) | |
download | cpython-003c7a3fcaafcddc149a528cb79a71c6050893e5.zip cpython-003c7a3fcaafcddc149a528cb79a71c6050893e5.tar.gz cpython-003c7a3fcaafcddc149a528cb79a71c6050893e5.tar.bz2 |
Fix a typo.
-rw-r--r-- | 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 index b00e780..685857d 100644 --- a/Lib/test/test_subprocess.py +++ b/Lib/test/test_subprocess.py @@ -471,7 +471,7 @@ class ProcessTestCase(BaseTestCase): 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));' |