MCPcopy Index your code
hub / github.com/RustPython/RustPython / response

Method response

Lib/imaplib.py:466–473  ·  view source on GitHub ↗

Return data for response 'code' if received, or None. Old value for response 'code' is cleared. (code, [data]) = .response(code)

(self, code)

Source from the content-addressed store, hash-verified

464
465
466 def response(self, code):
467 """Return data for response 'code' if received, or None.
468
469 Old value for response 'code' is cleared.
470
471 (code, [data]) = <instance>.response(code)
472 """
473 return self._untagged_response(code, [None], code.upper())
474
475
476

Callers 3

test_idle_iterMethod · 0.80
test_idle_burstMethod · 0.80
test_bracket_flagsMethod · 0.80

Calls 2

_untagged_responseMethod · 0.95
upperMethod · 0.45

Tested by 3

test_idle_iterMethod · 0.64
test_idle_burstMethod · 0.64
test_bracket_flagsMethod · 0.64