Home
last modified time | relevance | path

Searched refs:getpass (Results 1 – 25 of 47) sorted by relevance

12

/third_party/python/Lib/test/
Dtest_getpass.py1 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/
Dgetpass.rst1 :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
Dcrypt.rst153 import getpass
162 cleartext = getpass.getpass()
Dallos.rst23 getpass.rst
Dpoplib.rst266 import getpass, poplib
269 M.user(getpass.getuser())
270 M.pass_(getpass.getpass())
Dmsvcrt.rst14 implementations of their services. For example, the :mod:`getpass` module uses
15 this in the implementation of the :func:`getpass` function.
Dtelnetlib.rst237 import getpass
242 password = getpass.getpass()
Dtermios.rst93 def getpass(prompt="Password: "):
Dimaplib.rst631 import getpass, imaplib
634 M.login(getpass.getuser(), getpass.getpass())
/third_party/python/Lib/distutils/command/
Dregister.py8 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/
Dtest_register.py4 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/
DREADME.md1 ## getpass section
9 npm install --save getpass
13 const mod_getpass = require('getpass');
/third_party/flutter/skia/tools/lua/
Dtrigger_ct_lua9 import getpass
75 password = getpass.getpass(
/third_party/python/Lib/
Dgetpass.py181 getpass = fallback_getpass variable
183 getpass = win_getpass variable
185 getpass = unix_getpass variable
Dimaplib.py1551 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/
Dsync_restricted_traces_to_cipd.py12 import getpass
49 trace_prefix = EXPERIMENTAL_CIPD_PREFIX % getpass.getuser()
Dgen_restricted_traces.py10 import getpass
351 trace_prefix = EXPERIMENTAL_CIPD_PREFIX % getpass.getuser()
/third_party/glib/gio/tests/
Dgtlsconsoleinteraction.c48 getpass (const gchar *prompt) in G_DEFINE_TYPE()
84 value = getpass (prompt); in g_tls_console_interaction_ask_password()
/third_party/skia/tools/android/
Dupload_to_android.py33 import getpass
109 'git config user.email %s@google.com' % getpass.getuser(), shell=True)
/third_party/flutter/skia/tools/android/
Dupload_to_android.py31 import getpass
107 'git config user.email %s@google.com' % getpass.getuser(), shell=True)
/third_party/musl/src/legacy/
Dgetpass.c8 char *getpass(const char *prompt) in getpass() function
/third_party/skia/tools/rebaseline/
Dtoggle_legacy_flag.py25 import getpass
/third_party/flutter/skia/tools/rebaseline/
Dtoggle_legacy_flag.py24 import getpass
/third_party/googletest/googletest/scripts/
Dupload.py50 import getpass
487 password = getpass.getpass("Password for %s: " % email)
/third_party/musl/porting/uniproton/kernel/include/
Dunistd.h165 char *getpass(const char *);

12