http://mmgen-wallet.i2p/project/mmgen/mmgen-wallet/src/ea1e8d1228db50c9776998ff50d270af52b35540/mmgen/mn_entry.py
Such words must be entered explicitly with the ENTER or SPACE key, or by exceeding the pad character limit. """ pad_max = 16 ss_len = None def get_word(self,mne): s,pad = ('', 0) lo,hi = (0, len(mne.wl) - 1) while True: ch,s,did_erase = self.get_char(s) if did_erase: lo,hi = (0, len(mne.wl) - 1) if ch in _return_chars: if s: return mne.idx(s,'full',lo_idx=lo,hi_idx=hi) elif ch in ascii_lowercase: s += ch ret =...