summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_os.py
diff options
context:
space:
mode:
authorMatthias Klose <doko@ubuntu.com>2010-03-21 11:15:45 (GMT)
committerMatthias Klose <doko@ubuntu.com>2010-03-21 11:15:45 (GMT)
commita0dc275f08b683193b5f64fd0859106cefcf3bf6 (patch)
tree25f4f59c4fc5b2820d16f5903c3dfffdfd630ab0 /Lib/test/test_os.py
parent3828741cdc38c0b55af0b31208500a5fa0839e7a (diff)
downloadcpython-a0dc275f08b683193b5f64fd0859106cefcf3bf6.zip
cpython-a0dc275f08b683193b5f64fd0859106cefcf3bf6.tar.gz
cpython-a0dc275f08b683193b5f64fd0859106cefcf3bf6.tar.bz2
Revert r79131
- Issue #1039, #8154: Fix os.execlp() crash with missing 2nd argument.
Diffstat (limited to 'Lib/test/test_os.py')
-rw-r--r--Lib/test/test_os.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/Lib/test/test_os.py b/Lib/test/test_os.py
index 45f6bd2..3cb411b 100644
--- a/Lib/test/test_os.py
+++ b/Lib/test/test_os.py
@@ -511,9 +511,6 @@ class URandomTests (unittest.TestCase):
except NotImplementedError:
pass
- def test_execvpe_with_bad_arglist(self):
- self.assertRaises(ValueError, os.execvpe, 'notepad', [], None)
-
class Win32ErrorTests(unittest.TestCase):
def test_rename(self):
self.assertRaises(WindowsError, os.rename, test_support.TESTFN, test_support.TESTFN+".bak")