[pytango] 06/08: Updated version 9.2.2 from 'upstream/9.2.2'

Sandor Bodo-Merle sbodomerle-guest at moszumanska.debian.org
Thu Sep 28 19:07:56 UTC 2017


This is an automated email from the git hooks/post-receive script.

sbodomerle-guest pushed a commit to branch master
in repository pytango.

commit aa5b9564cca17e46643a11deb4f82fe7b239c82d
Merge: 28b2465 c5e62c5
Author: Bodo-Merle Sandor <sbodomerle at gmail.com>
Date:   Thu Sep 28 21:04:57 2017 +0200

    Updated version 9.2.2 from 'upstream/9.2.2'
    
    with Debian dir 153c4ec6f758089a68d6eeb2570246a6d313d0f0

 .gitignore                                         |   3 +
 .pylintrc                                          | 425 +++++++++++++
 .travis.yml                                        |  20 +-
 Makefile                                           |   3 +
 PyTango.py                                         |   1 -
 README.rst                                         |  18 +-
 doc/conf.py                                        |   3 +
 doc/contents.rst                                   |   3 +-
 doc/faq.rst                                        |   4 +-
 doc/green.rst                                      | 265 --------
 doc/green_modes/client_asyncio_mode.rst            |  12 +
 doc/green_modes/client_futures_mode.rst            |  96 +++
 doc/green_modes/client_gevent_mode.rst             | 107 ++++
 doc/green_modes/green.rst                          |  26 +
 doc/green_modes/green_modes_client.rst             |  45 ++
 doc/green_modes/green_modes_server.rst             |  61 ++
 doc/how-to-contribute.rst                          |  58 ++
 doc/howto.rst                                      |  12 +-
 doc/revision.rst                                   | 205 ++++---
 doc/start.rst                                      |   2 +-
 doc/tep/database.py                                |  17 +-
 doc/utilities.rst                                  |   6 +-
 examples/asyncio_green_mode/__init__.py            |   1 +
 .../asyncio_green_mode/asyncio_device_example.py   |  32 +
 .../asyncio_green_mode/asyncio_simple_example.py   |  12 +
 examples/asyncio_green_mode/tcp_server_example.py  |  76 +++
 examples/fwdAttr/FwdServer.py                      |  35 ++
 examples/interfacechangeEvents/ClassFactory.cpp    |  56 ++
 examples/interfacechangeEvents/IfchangeClient.py   |  60 ++
 examples/interfacechangeEvents/IfchangeServer.cpp  | 325 ++++++++++
 examples/interfacechangeEvents/IfchangeServer.h    | 219 +++++++
 examples/interfacechangeEvents/IfchangeServer.py   |  68 +++
 examples/interfacechangeEvents/IfchangeServer.xmi  |  71 +++
 .../interfacechangeEvents/IfchangeServerClass.cpp  | 672 +++++++++++++++++++++
 .../interfacechangeEvents/IfchangeServerClass.h    | 221 +++++++
 .../IfchangeServerDynAttrUtils.cpp                 | 186 ++++++
 .../IfchangeServerStateMachine.cpp                 | 142 +++++
 examples/interfacechangeEvents/Makefile            | 148 +++++
 examples/interfacechangeEvents/Makefile.bck        | 148 +++++
 examples/interfacechangeEvents/main.cpp            |  87 +++
 examples/mandatory/MandatoryPropertyServer.py      |  25 +
 examples/pipeEvents/ClassFactory.cpp               |  56 ++
 examples/pipeEvents/Makefile                       | 147 +++++
 examples/pipeEvents/PipeEventClient.py             |  52 ++
 examples/pipeEvents/PipeServer.cpp                 | 467 ++++++++++++++
 examples/pipeEvents/PipeServer.h                   | 187 ++++++
 examples/pipeEvents/PipeServer.py                  |  76 +++
 examples/pipeEvents/PipeServer.xmi                 |  38 ++
 examples/pipeEvents/PipeServerClass.cpp            | 611 +++++++++++++++++++
 examples/pipeEvents/PipeServerClass.h              | 158 +++++
 examples/pipeEvents/PipeServerStateMachine.cpp     | 101 ++++
 examples/pipeEvents/main.cpp                       |  87 +++
 examples/pipes/ClassFactory.cpp                    |  56 ++
 examples/pipes/Makefile                            | 147 +++++
 examples/pipes/PipeClient.py                       |  25 +
 examples/pipes/PipeServer.cpp                      | 339 +++++++++++
 examples/pipes/PipeServer.h                        | 173 ++++++
 examples/pipes/PipeServer.py                       |  40 ++
 examples/pipes/PipeServer.xmi                      |  29 +
 examples/pipes/PipeServerClass.cpp                 | 582 ++++++++++++++++++
 examples/pipes/PipeServerClass.h                   | 131 ++++
 examples/pipes/PipeServerStateMachine.cpp          |  86 +++
 examples/pipes/__init__.py                         |   0
 examples/pipes/main.cpp                            |  87 +++
 ext/callback.cpp                                   |  48 +-
 ext/callback.h                                     |   4 +
 ext/device_pipe.cpp                                |  10 +-
 ext/device_pipe.h                                  |   4 +
 ext/device_proxy.cpp                               | 389 ++++++++++--
 ext/devintr_change_event_data.cpp                  |  72 +++
 ext/enums.cpp                                      |   2 +
 ext/pipe_event_data.cpp                            |  68 +++
 ext/pytango.cpp                                    |   8 +
 ext/server/device_class.cpp                        |  11 +
 ext/server/device_class.h                          |   4 +
 ext/server/device_impl.cpp                         |  81 ++-
 ext/server/fwdAttr.cpp                             |  28 +
 ext/server/pipe.cpp                                | 150 ++++-
 ext/server/pipe.h                                  |   5 +-
 ext/tango_numpy.h                                  |   1 +
 ext/tgutils.h                                      |  13 +-
 setup.cfg                                          |   7 +-
 setup.py                                           |  28 +-
 tango/__init__.py                                  | 106 ++--
 tango/api_util.py                                  |  52 +-
 tango/asyncio.py                                   |  19 +-
 tango/asyncio_executor.py                          | 101 ++++
 tango/asyncio_tools.py                             |   1 +
 tango/attr_data.py                                 | 177 +++---
 tango/attribute_proxy.py                           | 136 +++--
 tango/base_types.py                                | 210 ++++---
 tango/callback.py                                  |   3 +
 tango/client.py                                    |  20 +-
 tango/codec.py                                     |   2 +
 tango/connection.py                                | 172 +++---
 tango/db.py                                        | 469 +++++++-------
 tango/device_attribute.py                          |  57 +-
 tango/device_class.py                              | 133 ++--
 tango/device_data.py                               |  15 +-
 tango/device_proxy.py                              | 434 +++++++++----
 tango/device_server.py                             | 138 ++++-
 tango/encoded_attribute.py                         | 133 ++--
 tango/exception.py                                 |  60 +-
 tango/futures.py                                   |  25 +-
 tango/futures_executor.py                          |  66 ++
 tango/gevent.py                                    |  34 +-
 tango/gevent_executor.py                           | 184 ++++++
 tango/globals.py                                   |  23 +-
 tango/green.py                                     | 290 ++++-----
 tango/group.py                                     |  32 +-
 tango/group_reply.py                               |  13 +-
 tango/group_reply_list.py                          |  10 +-
 tango/log4tango.py                                 |  82 +--
 tango/pipe.py                                      |  39 +-
 tango/pipe_data.py                                 |  39 +-
 tango/pytango_init.py                              |   4 +-
 tango/pytango_pprint.py                            |  87 +--
 tango/pyutil.py                                    | 139 +++--
 tango/release.py                                   |   2 +-
 tango/server.py                                    | 381 ++++--------
 tango/tango_asyncio.py                             | 110 ----
 tango/tango_futures.py                             |  47 --
 tango/tango_gevent.py                              | 120 ----
 tango/tango_numpy.py                               |  27 +-
 tango/tango_object.py                              |  37 +-
 tango/test_context.py                              | 100 ++-
 tango/test_utils.py                                |  56 +-
 tango/time_val.py                                  |  65 +-
 tango/utils.py                                     | 166 ++---
 tests/test_client.py                               |  41 +-
 tests/test_event.py                                | 124 +++-
 tests/test_server.py                               | 140 ++++-
 winsetup.py                                        |   4 +-
 133 files changed, 10967 insertions(+), 2542 deletions(-)

-- 
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