Searched defs:AuthenticationString (Results 1 - 3 of 3) sorted by relevance

/external/python/cpython2/Lib/multiprocessing/
H A Dprocess.py194 self._authkey = AuthenticationString(authkey)
285 class AuthenticationString(bytes): class in inherits:bytes
290 'Pickling an AuthenticationString object is '
293 return AuthenticationString, (bytes(self),)
309 self._authkey = AuthenticationString(os.urandom(32))
H A Dmanagers.py51 from multiprocessing.process import AuthenticationString namespace
158 self.authkey = AuthenticationString(authkey)
477 self._authkey = AuthenticationString(authkey)
726 self._authkey = AuthenticationString(authkey)
/external/python/cpython3/Lib/multiprocessing/
H A Dprocess.py170 self._config['authkey'] = AuthenticationString(authkey)
277 class AuthenticationString(bytes): class in inherits:bytes
282 'Pickling an AuthenticationString object is '
285 return AuthenticationString, (bytes(self),)
298 self._config = {'authkey': AuthenticationString(os.urandom(32)),

Completed in 160 milliseconds