minor renames for code-input helper stuff

This commit is contained in:
Brian Warner 2017-03-11 10:03:24 +01:00
parent 299f89c01f
commit e2c0f08216
2 changed files with 5 additions and 5 deletions

View File

@ -114,11 +114,11 @@ class Boss(object):
# would require the Wormhole to be aware of Code (whereas right now # would require the Wormhole to be aware of Code (whereas right now
# Wormhole only knows about this Boss instance, and everything else is # Wormhole only knows about this Boss instance, and everything else is
# hidden away). # hidden away).
def input_code(self, stdio): def input_code(self, helper):
if self._did_start_code: if self._did_start_code:
raise OnlyOneCodeError() raise OnlyOneCodeError()
self._did_start_code = True self._did_start_code = True
self._C.input_code(stdio) self._C.input_code(helper)
def allocate_code(self, code_length): def allocate_code(self, code_length):
if self._did_start_code: if self._did_start_code:
raise OnlyOneCodeError() raise OnlyOneCodeError()

View File

@ -52,7 +52,7 @@ class Code(object):
@m.input() @m.input()
def allocate_code(self, code_length): pass def allocate_code(self, code_length): pass
@m.input() @m.input()
def input_code(self, stdio): pass def input_code(self, input_helper): pass
@m.input() @m.input()
def set_code(self, code): pass def set_code(self, code): pass
@ -80,8 +80,8 @@ class Code(object):
def L_refresh_nameplates(self): def L_refresh_nameplates(self):
self._L.refresh_nameplates() self._L.refresh_nameplates()
@m.output() @m.output()
def start_input_and_L_refresh_nameplates(self, stdio): def start_input_and_L_refresh_nameplates(self, input_helper):
self._stdio = stdio self._input_helper = input_helper
self._L.refresh_nameplates() self._L.refresh_nameplates()
@m.output() @m.output()
def stash_code_length_and_RC_tx_allocate(self, code_length): def stash_code_length_and_RC_tx_allocate(self, code_length):