##// END OF EJS Templates
password key added to input_request
MinRK -
Show More
@@ -1029,12 +1029,19 the ``raw_input(prompt)`` call.
1029
1029
1030 Message type: ``input_request``::
1030 Message type: ``input_request``::
1031
1031
1032 content = { 'prompt' : str }
1032 content = { 'prompt' : str, 'password' : bool }
1033
1033
1034 Message type: ``input_reply``::
1034 Message type: ``input_reply``::
1035
1035
1036 content = { 'value' : str }
1036 content = { 'value' : str }
1037
1037
1038
1039 When ``password`` is True, the frontend should not echo the input as it is entered.
1040
1041 .. versionchanged:: 5.0
1042
1043 ``password`` key added in msg spec 5.0.
1044
1038 .. note::
1045 .. note::
1039
1046
1040 The stdin socket of the client is required to have the same zmq IDENTITY
1047 The stdin socket of the client is required to have the same zmq IDENTITY
General Comments 0
You need to be logged in to leave comments. Login now