/third_party/python/Lib/test/ |
D | test_getpass.py | 1 import getpass 23 self.assertEqual(expected_name, getpass.getuser()) 28 getpass.getuser() 44 getpass.getuser()) 47 self.assertRaises(ImportError, getpass.getuser) 56 getpass._raw_input('some_prompt', stream, input=input) 63 getpass._raw_input(prompt, input=input) 69 getpass._raw_input(stream=StringIO()) 76 getpass._raw_input(prompt="HasÅ‚o: ",stream=stream) 82 self.assertRaises(EOFError, getpass._raw_input, input=input) [all …]
|
/third_party/python/Doc/library/ |
D | getpass.rst | 1 :mod:`getpass` --- Portable password input 4 .. module:: getpass 11 **Source code:** :source:`Lib/getpass.py` 15 The :mod:`getpass` module provides two functions: 18 .. function:: getpass(prompt='Password: ', stream=None) 27 If echo free input is unavailable getpass() falls back to printing 32 If you call getpass from within IDLE, the input may be done in the
|
D | crypt.rst | 153 import getpass 162 cleartext = getpass.getpass()
|
D | allos.rst | 23 getpass.rst
|
D | poplib.rst | 266 import getpass, poplib 269 M.user(getpass.getuser()) 270 M.pass_(getpass.getpass())
|
D | msvcrt.rst | 14 implementations of their services. For example, the :mod:`getpass` module uses 15 this in the implementation of the :func:`getpass` function.
|
D | telnetlib.rst | 237 import getpass 242 password = getpass.getpass()
|
D | termios.rst | 93 def getpass(prompt="Password: "):
|
D | imaplib.rst | 631 import getpass, imaplib 634 M.login(getpass.getuser(), getpass.getpass())
|
/third_party/python/Lib/distutils/command/ |
D | register.py | 8 import getpass 158 password = getpass.getpass('Password: ') 197 data['password'] = getpass.getpass('Password: ') 199 data['confirm'] = getpass.getpass(' Confirm: ')
|
/third_party/python/Lib/distutils/tests/ |
D | test_register.py | 4 import getpass 81 self._old_getpass = getpass.getpass 84 getpass.getpass = _getpass 90 getpass.getpass = self._old_getpass
|
/third_party/node/deps/npm/node_modules/getpass/ |
D | README.md | 1 ## getpass section 9 npm install --save getpass 13 const mod_getpass = require('getpass');
|
/third_party/flutter/skia/tools/lua/ |
D | trigger_ct_lua | 9 import getpass 75 password = getpass.getpass(
|
/third_party/python/Lib/ |
D | getpass.py | 181 getpass = fallback_getpass variable 183 getpass = win_getpass variable 185 getpass = unix_getpass variable
|
D | imaplib.py | 1551 import getopt, getpass 1570 USER = getpass.getuser() 1571 PASSWD = getpass.getpass("IMAP password for %s on %s: " % (USER, host or "localhost"))
|
/third_party/skia/third_party/externals/angle2/src/tests/restricted_traces/ |
D | sync_restricted_traces_to_cipd.py | 12 import getpass 49 trace_prefix = EXPERIMENTAL_CIPD_PREFIX % getpass.getuser()
|
D | gen_restricted_traces.py | 10 import getpass 351 trace_prefix = EXPERIMENTAL_CIPD_PREFIX % getpass.getuser()
|
/third_party/glib/gio/tests/ |
D | gtlsconsoleinteraction.c | 48 getpass (const gchar *prompt) in G_DEFINE_TYPE() 84 value = getpass (prompt); in g_tls_console_interaction_ask_password()
|
/third_party/skia/tools/android/ |
D | upload_to_android.py | 33 import getpass 109 'git config user.email %s@google.com' % getpass.getuser(), shell=True)
|
/third_party/flutter/skia/tools/android/ |
D | upload_to_android.py | 31 import getpass 107 'git config user.email %s@google.com' % getpass.getuser(), shell=True)
|
/third_party/musl/src/legacy/ |
D | getpass.c | 8 char *getpass(const char *prompt) in getpass() function
|
/third_party/skia/tools/rebaseline/ |
D | toggle_legacy_flag.py | 25 import getpass
|
/third_party/flutter/skia/tools/rebaseline/ |
D | toggle_legacy_flag.py | 24 import getpass
|
/third_party/googletest/googletest/scripts/ |
D | upload.py | 50 import getpass 487 password = getpass.getpass("Password for %s: " % email)
|
/third_party/musl/porting/uniproton/kernel/include/ |
D | unistd.h | 165 char *getpass(const char *);
|