Searched refs:getpwall (Results 1 – 9 of 9) sorted by relevance
/external/python/cpython2/Lib/test/ |
D | test_pwd.py | 10 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/ |
D | test_pwd.py | 11 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():
|
D | test_pathlib.py | 2421 for pwdent in pwd.getpwall():
|
D | test_os.py | 50 all_users = [u.pw_uid for u in pwd.getpwall()]
|
/external/python/cpython2/Lib/plat-os2emx/ |
D | pwd.py | 202 def getpwall(): function 208 getpwall()
|
/external/python/cpython3/Doc/library/ |
D | pwd.rst | 64 .. function:: getpwall()
|
/external/python/cpython2/Doc/library/ |
D | pwd.rst | 64 .. function:: getpwall()
|
/external/python/cpython2/Lib/ |
D | CGIHTTPServer.py | 359 nobody = 1 + max(map(lambda x: x[2], pwd.getpwall()))
|
/external/python/cpython3/Lib/http/ |
D | server.py | 951 nobody = 1 + max(x[2] for x in pwd.getpwall())
|