Home
last modified time | relevance | path

Searched refs:getpwall (Results 1 – 9 of 9) sorted by relevance

/external/python/cpython2/Lib/test/
Dtest_pwd.py10 entries = pwd.getpwall()
36 entries = pwd.getpwall()
60 self.assertRaises(TypeError, pwd.getpwall, 42)
65 for (n, p, u, g, gecos, d, s) in pwd.getpwall():
/external/python/cpython3/Lib/test/
Dtest_pwd.py11 entries = pwd.getpwall()
37 entries = pwd.getpwall()
61 self.assertRaises(TypeError, pwd.getpwall, 42)
66 for (n, p, u, g, gecos, d, s) in pwd.getpwall():
Dtest_pathlib.py2421 for pwdent in pwd.getpwall():
Dtest_os.py50 all_users = [u.pw_uid for u in pwd.getpwall()]
/external/python/cpython2/Lib/plat-os2emx/
Dpwd.py202 def getpwall(): function
208 getpwall()
/external/python/cpython3/Doc/library/
Dpwd.rst64 .. function:: getpwall()
/external/python/cpython2/Doc/library/
Dpwd.rst64 .. function:: getpwall()
/external/python/cpython2/Lib/
DCGIHTTPServer.py359 nobody = 1 + max(map(lambda x: x[2], pwd.getpwall()))
/external/python/cpython3/Lib/http/
Dserver.py951 nobody = 1 + max(x[2] for x in pwd.getpwall())