[pytango] 170/483: fixes #3579062
Sandor Bodo-Merle
sbodomerle-guest at moszumanska.debian.org
Thu Sep 28 19:14:37 UTC 2017
This is an automated email from the git hooks/post-receive script.
sbodomerle-guest pushed a commit to annotated tag bliss_8.10
in repository pytango.
commit e054c1e466f3b10e6101c0143aefbc3f4b786330
Author: tiagocoutinho <tiagocoutinho at 4e9c00fd-8f2e-0410-aa12-93ce3db5e235>
Date: Mon Oct 22 08:23:17 2012 +0000
fixes #3579062
git-svn-id: http://svn.code.sf.net/p/tango-cs/code/bindings/PyTango/trunk@21359 4e9c00fd-8f2e-0410-aa12-93ce3db5e235
---
doc/revision.rst | 8 ++++++++
src/server/attribute.cpp | 14 ++++++++++++++
2 files changed, 22 insertions(+)
diff --git a/doc/revision.rst b/doc/revision.rst
index 630f334..21d9b7b 100644
--- a/doc/revision.rst
+++ b/doc/revision.rst
@@ -69,6 +69,8 @@ History of modifications:
+----------+----------------------------------------------------------------------------------+-----------------------------------------------------+-----------------------+
| 10/10/12 | `8.15 <http://www.tango-controls.org/static/PyTango/v802/doc/html/index.html>`_ | Update to PyTango 8.0.2 | T\. Coutinho |
+----------+----------------------------------------------------------------------------------+-----------------------------------------------------+-----------------------+
+| --/--/12 | `8.16 <http://www.tango-controls.org/static/PyTango/v803/doc/html/index.html>`_ | Update to PyTango 8.0.3 | T\. Coutinho |
++----------+----------------------------------------------------------------------------------+-----------------------------------------------------+-----------------------+
.. _version-history:
@@ -78,6 +80,10 @@ Version history
+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| version | Changes |
+============+==============================================================================================================================================================================+
+| 8.0.3 | Bug fixes: |
+| | - from sourceforge: |
+| | - `3579062: [pytango] Attribute missing methods <https://sourceforge.net/tracker/?func=detail&aid=3579062&group_id=57612&atid=484769>`_ |
++------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| 8.0.2 | Bug fixes: |
| | - from sourceforge: |
| | - `3570970: [pytango] problem during the python3 building <https://sourceforge.net/tracker/?func=detail&aid=3570970&group_id=57612&atid=484769>`_ |
@@ -86,6 +92,8 @@ Version history
| | - `3570975: [pytango] problem during use of python3 version <https://sourceforge.net/tracker/?func=detail&aid=3570975&group_id=57612&atid=484769>`_ |
| | - `3574099: [pytango] compile error with gcc < 4.5 <https://sourceforge.net/tracker/?func=detail&aid=3574099&group_id=57612&atid=484769>`_ |
+------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
+| 8.0.1 | *SKIPPED* |
++------------+------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| 8.0.0 | Features: |
| | - Implemented tango C++ 8.0 API |
| | - Python 3k compatible |
diff --git a/src/server/attribute.cpp b/src/server/attribute.cpp
index 50af607..6137671 100644
--- a/src/server/attribute.cpp
+++ b/src/server/attribute.cpp
@@ -873,7 +873,21 @@ void export_attribute()
.def("set_max_alarm", &PyAttribute::set_max_alarm)
.def("set_min_warning", &PyAttribute::set_min_warning)
.def("set_max_warning", &PyAttribute::set_max_warning)
+
+ .def("get_value_flag", &Tango::Attribute::get_value_flag)
+ .def("set_value_flag", &Tango::Attribute::set_value_flag)
+
+ .def("get_disp_level", &Tango::Attribute::get_disp_level)
+ .def("change_event_subscribed", &Tango::Attribute::change_event_subscribed)
+ .def("periodic_event_subscribed", &Tango::Attribute::periodic_event_subscribed)
+ .def("archive_event_subscribed", &Tango::Attribute::archive_event_subscribed)
+ .def("quality_event_subscribed", &Tango::Attribute::quality_event_subscribed)
+ .def("user_event_subscribed", &Tango::Attribute::user_event_subscribed)
+
+ .def("use_notifd_event", &Tango::Attribute::use_notifd_event)
+ .def("use_zmq_event", &Tango::Attribute::use_zmq_event)
+
.def("get_min_alarm",
(PyObject* (*) (Tango::Attribute &))
&PyAttribute::get_min_alarm)
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-science/packages/pytango.git
More information about the debian-science-commits
mailing list