-
Notifications
You must be signed in to change notification settings - Fork 44
Conversation
.gitignore
Outdated
# Eclipse users | ||
.project | ||
.pydevproject | ||
.settings/ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
editor related filters should be in your private .git/info/exclude
tango/base_types.py
Outdated
|
||
*DATA_READY_EVENT - New in PyTango 7.0.0* | ||
*INTERFACE_CHANGE_EVENT - New in PyTango 9.2.2* |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This pull request should not concern INTERFACE_CHANGE_EVENT
tango/device_proxy.py
Outdated
@@ -1183,6 +1185,10 @@ def __DeviceProxy__get_events(self, event_id, callback=None, extract_as=ExtractA | |||
return self.__get_attr_conf_events(event_id, extract_as) | |||
elif event_type in (EventType.DATA_READY_EVENT,): | |||
return self.__get_data_ready_events(event_id, extract_as) | |||
elif event_type in (EventType.INTERFACE_CHANGE_EVENT,): | |||
raise NotImplementedError("event_type not implemented event_type: " + str(event_type)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This pull request should not concern INTERFACE_CHANGE_EVENT
tango/utils.py
Outdated
@@ -1415,6 +1415,9 @@ def _get_value(self, evt): | |||
return "label='%s'; unit='%s'" % (cfg.label, cfg.unit) | |||
elif isinstance(evt, DataReadyEventData): | |||
return "" | |||
elif isinstance(evt, PipeEventData): | |||
print ("utils::_get_value()") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I suspect this is a debug print that should be removed
tango/utils.py
Outdated
@@ -1415,6 +1415,9 @@ def _get_value(self, evt): | |||
return "label='%s'; unit='%s'" % (cfg.label, cfg.unit) | |||
elif isinstance(evt, DataReadyEventData): | |||
return "" | |||
elif isinstance(evt, PipeEventData): | |||
print ("utils::_get_value()") | |||
return |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn´t it return the pipe value?
No description provided.