HomeSort by relevance Sort by last modified time
    Searched refs:getpwall (Results 1 - 9 of 9) sorted by null

  /external/python/cpython2/Lib/test/
test_pwd.py 10 entries = pwd.getpwall()
36 entries = pwd.getpwall()
48 # for each uid is among those from getpwall() for this uid
60 self.assertRaises(TypeError, pwd.getpwall, 42)
65 for (n, p, u, g, gecos, d, s) in pwd.getpwall():
  /external/python/cpython3/Lib/test/
test_pwd.py 7 @unittest.skipUnless(hasattr(pwd, 'getpwall'), 'Does not have getpwall()')
11 entries = pwd.getpwall()
37 entries = pwd.getpwall()
49 # for each uid is among those from getpwall() for this uid
61 self.assertRaises(TypeError, pwd.getpwall, 42)
66 for (n, p, u, g, gecos, d, s) in pwd.getpwall():
test_pathlib.py     [all...]
test_os.py 55 all_users = [u.pw_uid for u in pwd.getpwall()]
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_pwd.py 10 entries = pwd.getpwall()
43 # for each uid is among those from getpwall() for this uid
53 self.assertRaises(TypeError, pwd.getpwall, 42)
58 for (n, p, u, g, gecos, d, s) in pwd.getpwall():
  /external/python/cpython2/Lib/plat-os2emx/
pwd.py 50 getpwall() - return a list of 7-tuples, each tuple being one record
202 def getpwall(): function
208 getpwall()
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
CGIHTTPServer.py 355 nobody = 1 + max(map(lambda x: x[2], pwd.getpwall()))
  /external/python/cpython2/Lib/
CGIHTTPServer.py 359 nobody = 1 + max(map(lambda x: x[2], pwd.getpwall()))
  /external/python/cpython3/Lib/http/
server.py     [all...]

Completed in 461 milliseconds