[Python-checkins] gh-95376: Add test for names containing null (#GH-5394)

ambv webhook-mailer at python.org
Sat Aug 6 12:53:24 EDT 2022


https://github.com/python/cpython/commit/a17cd47b614f8bc660788647a009a25e121221d7
commit: a17cd47b614f8bc660788647a009a25e121221d7
branch: main
author: Sion Kang <31057849+Yaminyam at users.noreply.github.com>
committer: ambv <lukasz at langa.pl>
date: 2022-08-06T18:53:19+02:00
summary:

gh-95376: Add test for names containing null (#GH-5394)

Co-authored-by: Erlend Egeberg Aasland <erlend.aasland at protonmail.com>

files:
M Lib/test/test_pwd.py

diff --git a/Lib/test/test_pwd.py b/Lib/test/test_pwd.py
index c789326425b..aa090b464a7 100644
--- a/Lib/test/test_pwd.py
+++ b/Lib/test/test_pwd.py
@@ -59,6 +59,8 @@ def test_errors(self):
         self.assertRaises(TypeError, pwd.getpwnam)
         self.assertRaises(TypeError, pwd.getpwnam, 42)
         self.assertRaises(TypeError, pwd.getpwall, 42)
+        # embedded null character
+        self.assertRaisesRegex(ValueError, 'null', pwd.getpwnam, 'a\x00b')
 
         # try to get some errors
         bynames = {}



More information about the Python-checkins mailing list