File tree Expand file tree Collapse file tree
yamcs-client/src/yamcs/client Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1019,9 +1019,6 @@ def stream_parameter_values(
10191019 :param tm_links:
10201020 If set, include only values that were received through
10211021 a specific link.
1022-
1023- .. versionadded:: 1.8.4
1024- Compatible with Yamcs 5.7.4 onwards
10251022 """
10261023 options = pvalue_service_pb2 .StreamParameterValuesRequest ()
10271024 options .ids .extend (to_named_object_ids (parameters ))
Original file line number Diff line number Diff line change @@ -619,9 +619,6 @@ def send_event(
619619 if every submitted event is unique.
620620 :param extra:
621621 Extra event properties.
622-
623- .. versionadded:: 1.8.4
624- Compatible with Yamcs 5.7.3 onwards
625622 """
626623 req = events_service_pb2 .CreateEventRequest ()
627624 req .message = message
Original file line number Diff line number Diff line change @@ -186,9 +186,6 @@ def source(self) -> Optional[str]:
186186 def extra (self ) -> Dict [str , str ]:
187187 """
188188 Dict with extra event properties.
189-
190- .. versionadded:: 1.8.4
191- Compatible with Yamcs 5.7.3 onwards
192189 """
193190 return {key : self ._proto .extra [key ] for key in self ._proto .extra }
194191
Original file line number Diff line number Diff line change @@ -383,12 +383,7 @@ def hex(self):
383383
384384 @property
385385 def unprocessed_binary (self ):
386- """
387- Binary representation before postprocessing.
388-
389- .. versionadded:: 1.8.4
390- Compatible with Yamcs 5.7.0 onwards
391- """
386+ """Binary representation before postprocessing."""
392387 if self ._proto .HasField ("unprocessedBinary" ):
393388 return self ._proto .unprocessedBinary
394389 return None
@@ -503,8 +498,6 @@ def is_failure(self) -> bool:
503498
504499 Use :meth:`await_complete` to wait until this information
505500 is available.
506-
507- .. versionadded:: 1.8.6
508501 """
509502 ack = self ._assemble_ack ("CommandComplete" )
510503 return (ack is not None ) and ack .status == "NOK"
You can’t perform that action at this time.
0 commit comments