mercurial/debugcommands.py
changeset 44662 649fd6c3ed33
parent 44639 99ea74cbed74
child 44915 b7808443ed6a
equal deleted inserted replaced
44661:67f757ed86e0 44662:649fd6c3ed33
  3719     norepo=True,
  3719     norepo=True,
  3720 )
  3720 )
  3721 def debuguigetpass(ui, prompt=b''):
  3721 def debuguigetpass(ui, prompt=b''):
  3722     """show prompt to type password"""
  3722     """show prompt to type password"""
  3723     r = ui.getpass(prompt)
  3723     r = ui.getpass(prompt)
  3724     ui.writenoi18n(b'respose: %s\n' % r)
  3724     ui.writenoi18n(b'response: %s\n' % r)
  3725 
  3725 
  3726 
  3726 
  3727 @command(
  3727 @command(
  3728     b'debuguiprompt',
  3728     b'debuguiprompt',
  3729     [(b'p', b'prompt', b'', _(b'prompt text'), _(b'TEXT')),],
  3729     [(b'p', b'prompt', b'', _(b'prompt text'), _(b'TEXT')),],