This file is indexed.

/usr/share/doc/python-tango-doc/html/revision.html is in python-tango-doc 9.2.2-1build1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>History of changes &#8212; PyTango 9.2.2 documentation</title>
    <link rel="stylesheet" href="_static/pytango.css" type="text/css" />
    <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
    <script type="text/javascript">
      var DOCUMENTATION_OPTIONS = {
        URL_ROOT:    './',
        VERSION:     '9.2.2',
        COLLAPSE_INDEX: false,
        FILE_SUFFIX: '.html',
        HAS_SOURCE:  true,
        SOURCELINK_SUFFIX: '.txt'
      };
    </script>
    <script type="text/javascript" src="_static/jquery.js"></script>
    <script type="text/javascript" src="_static/underscore.js"></script>
    <script type="text/javascript" src="_static/doctools.js"></script>
    <link rel="shortcut icon" href="_static/logo.ico"/>
    <link rel="index" title="Index" href="genindex.html" />
    <link rel="search" title="Search" href="search.html" />
    <link rel="prev" title="TEP 2 - Tango database serverless" href="tep/tep-0002.html" />

  </head>
  <body>
    <div class="related" role="navigation" aria-label="related navigation">
      <h3>Navigation</h3>
      <ul>
        <li class="right" style="margin-right: 10px">
          <a href="genindex.html" title="General Index"
             accesskey="I">index</a></li>
        <li class="right" >
          <a href="py-modindex.html" title="Python Module Index"
             >modules</a> |</li>
        <li class="right" >
          <a href="tep/tep-0002.html" title="TEP 2 - Tango database serverless"
             accesskey="P">previous</a> |</li>
    <li><a href="index.html">home</a>|&nbsp;</li>
    <li><a href="start.html">getting started</a>|&nbsp;</li>
    <li><a href="quicktour.html">quick tour</a>|&nbsp;</li>
    <li><a href="howto.html">how to</a>|&nbsp;</li>
    <li><a href="faq.html">FAQ</a>|&nbsp;</li>
    <li><a href="contents.html">documentation (v9.2.2)</a> &raquo;</li>
 
      </ul>
    </div>
      <div class="sphinxsidebar" role="navigation" aria-label="main navigation">
        <div class="sphinxsidebarwrapper">
            <p class="logo"><a href="contents.html">
              <img class="logo" src="_static/logo.png" alt="Logo"/>
            </a></p>
  <h3><a href="contents.html">Table Of Contents</a></h3>
  <ul>
<li><a class="reference internal" href="#">History of changes</a><ul>
<li><a class="reference internal" href="#document-revisions">Document revisions</a></li>
<li><a class="reference internal" href="#version-history">Version history</a></li>
</ul>
</li>
</ul>

  <h4>Previous topic</h4>
  <p class="topless"><a href="tep/tep-0002.html"
                        title="previous chapter">TEP 2 - Tango database serverless</a></p>
  <div role="note" aria-label="source link">
    <h3>This Page</h3>
    <ul class="this-page-menu">
      <li><a href="_sources/revision.rst.txt"
            rel="nofollow">Show Source</a></li>
    </ul>
   </div>
<div id="searchbox" style="display: none" role="search">
  <h3>Quick search</h3>
    <form class="search" action="search.html" method="get">
      <div><input type="text" name="q" /></div>
      <div><input type="submit" value="Go" /></div>
      <input type="hidden" name="check_keywords" value="yes" />
      <input type="hidden" name="area" value="default" />
    </form>
</div>
<script type="text/javascript">$('#searchbox').show(0);</script>
        </div>
      </div>

    <div class="document">
      <div class="documentwrapper">
        <div class="bodywrapper">
          <div class="body" role="main">
            
  <div class="section" id="history-of-changes">
<span id="pytango-history-changes"></span><h1>History of changes<a class="headerlink" href="#history-of-changes" title="Permalink to this headline"></a></h1>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Contributers:</th><td class="field-body">T. Coutinho</td>
</tr>
<tr class="field-even field"><th class="field-name">Last Update:</th><td class="field-body">Feb 07, 2018</td>
</tr>
</tbody>
</table>
<div class="section" id="document-revisions">
<span id="pytango-revisions"></span><h2>Document revisions<a class="headerlink" href="#document-revisions" title="Permalink to this headline"></a></h2>
<table border="1" class="docutils">
<colgroup>
<col width="6%" />
<col width="46%" />
<col width="30%" />
<col width="18%" />
</colgroup>
<thead valign="bottom">
<tr class="row-odd"><th class="head">Date</th>
<th class="head">Revision</th>
<th class="head">Description</th>
<th class="head">Author</th>
</tr>
</thead>
<tbody valign="top">
<tr class="row-even"><td>18/07/03</td>
<td>1.0</td>
<td>Initial Version</td>
<td>M. Ounsy</td>
</tr>
<tr class="row-odd"><td>06/10/03</td>
<td>2.0</td>
<td>Extension of the “Getting Started” paragraph</td>
<td>A. Buteau/M. Ounsy</td>
</tr>
<tr class="row-even"><td>14/10/03</td>
<td>3.0</td>
<td>Added Exception Handling paragraph</td>
<td>M. Ounsy</td>
</tr>
<tr class="row-odd"><td>13/06/05</td>
<td>4.0</td>
<td>Ported to Latex, added events, AttributeProxy
and ApiUtil</td>
<td>V. Forchì</td>
</tr>
<tr class="row-even"><td>13/06/05</td>
<td>4.1</td>
<td>fixed bug with python 2.5 and and state events
new Database constructor</td>
<td>V. Forchì</td>
</tr>
<tr class="row-odd"><td>15/01/06</td>
<td>5.0</td>
<td>Added Device Server classes</td>
<td>E.Taurel</td>
</tr>
<tr class="row-even"><td>15/03/07</td>
<td>6.0</td>
<td>Added AttrInfoEx, AttributeConfig events, 64bits,
write_attribute</td>
<td>T. Coutinho</td>
</tr>
<tr class="row-odd"><td>21/03/07</td>
<td>6.1</td>
<td>Added groups</td>
<td>T. Coutinho</td>
</tr>
<tr class="row-even"><td>15/06/07</td>
<td><a class="reference external" href="http://www.tango-controls.org/Documents/bindings/PyTango-3.0.3.pdf">6.2</a></td>
<td>Added dynamic attributes doc</td>
<td>E. Taurel</td>
</tr>
<tr class="row-odd"><td>06/05/08</td>
<td><a class="reference external" href="http://www.tango-controls.org/Documents/bindings/PyTango-3.0.4.pdf">7.0</a></td>
<td>Update to Tango 6.1. Added DB methods, version info</td>
<td>T. Coutinho</td>
</tr>
<tr class="row-even"><td>10/07/09</td>
<td><a class="reference external" href="http://www.tango-controls.org/static/PyTango/v7/doc/html/index.html">8.0</a></td>
<td>Update to Tango 7. Major refactoring. Migrated doc</td>
<td>T. Coutinho/R. Suñe</td>
</tr>
<tr class="row-odd"><td>24/07/09</td>
<td><a class="reference external" href="http://www.tango-controls.org/static/PyTango/v7/doc/html/index.html">8.1</a></td>
<td>Added migration info, added missing API doc</td>
<td>T. Coutinho/R. Suñe</td>
</tr>
<tr class="row-even"><td>21/09/09</td>
<td><a class="reference external" href="http://www.tango-controls.org/static/PyTango/v7/doc/html/index.html">8.2</a></td>
<td>Added migration info, release of 7.0.0beta2</td>
<td>T. Coutinho/R. Suñe</td>
</tr>
<tr class="row-odd"><td>12/11/09</td>
<td><a class="reference external" href="http://www.tango-controls.org/static/PyTango/v71/doc/html/index.html">8.3</a></td>
<td>Update to Tango 7.1.</td>
<td>T. Coutinho/R. Suñe</td>
</tr>
<tr class="row-even"><td>??/12/09</td>
<td><a class="reference external" href="http://www.tango-controls.org/static/PyTango/v71rc1/doc/html/index.html">8.4</a></td>
<td>Update to PyTango 7.1.0 rc1</td>
<td>T. Coutinho/R. Suñe</td>
</tr>
<tr class="row-odd"><td>19/02/10</td>
<td><a class="reference external" href="http://www.tango-controls.org/static/PyTango/v711/doc/html/index.html">8.5</a></td>
<td>Update to PyTango 7.1.1</td>
<td>T. Coutinho/R. Suñe</td>
</tr>
<tr class="row-even"><td>06/08/10</td>
<td><a class="reference external" href="http://www.tango-controls.org/static/PyTango/v712/doc/html/index.html">8.6</a></td>
<td>Update to PyTango 7.1.2</td>
<td>T. Coutinho</td>
</tr>
<tr class="row-odd"><td>05/11/10</td>
<td><a class="reference external" href="http://www.tango-controls.org/static/PyTango/v713/doc/html/index.html">8.7</a></td>
<td>Update to PyTango 7.1.3</td>
<td>T. Coutinho</td>
</tr>
<tr class="row-even"><td>08/04/11</td>
<td><a class="reference external" href="http://www.tango-controls.org/static/PyTango/v714/doc/html/index.html">8.8</a></td>
<td>Update to PyTango 7.1.4</td>
<td>T. Coutinho</td>
</tr>
<tr class="row-odd"><td>13/04/11</td>
<td><a class="reference external" href="http://www.tango-controls.org/static/PyTango/v715/doc/html/index.html">8.9</a></td>
<td>Update to PyTango 7.1.5</td>
<td>T. Coutinho</td>
</tr>
<tr class="row-even"><td>14/04/11</td>
<td><a class="reference external" href="http://www.tango-controls.org/static/PyTango/v716/doc/html/index.html">8.10</a></td>
<td>Update to PyTango 7.1.6</td>
<td>T. Coutinho</td>
</tr>
<tr class="row-odd"><td>15/04/11</td>
<td><a class="reference external" href="http://www.tango-controls.org/static/PyTango/v720/doc/html/index.html">8.11</a></td>
<td>Update to PyTango 7.2.0</td>
<td>T. Coutinho</td>
</tr>
<tr class="row-even"><td>12/12/11</td>
<td><a class="reference external" href="http://www.tango-controls.org/static/PyTango/v722/doc/html/index.html">8.12</a></td>
<td>Update to PyTango 7.2.2</td>
<td>T. Coutinho</td>
</tr>
<tr class="row-odd"><td>24/04/12</td>
<td><a class="reference external" href="http://www.tango-controls.org/static/PyTango/v723/doc/html/index.html">8.13</a></td>
<td>Update to PyTango 7.2.3</td>
<td>T. Coutinho</td>
</tr>
<tr class="row-even"><td>21/09/12</td>
<td><a class="reference external" href="http://www.tango-controls.org/static/PyTango/v800/doc/html/index.html">8.14</a></td>
<td>Update to PyTango 8.0.0</td>
<td>T. Coutinho</td>
</tr>
<tr class="row-odd"><td>10/10/12</td>
<td><a class="reference external" href="http://www.tango-controls.org/static/PyTango/v802/doc/html/index.html">8.15</a></td>
<td>Update to PyTango 8.0.2</td>
<td>T. Coutinho</td>
</tr>
<tr class="row-even"><td>20/05/13</td>
<td><a class="reference external" href="http://www.tango-controls.org/static/PyTango/v803/doc/html/index.html">8.16</a></td>
<td>Update to PyTango 8.0.3</td>
<td>T. Coutinho</td>
</tr>
<tr class="row-odd"><td>28/08/13</td>
<td><a class="reference external" href="http://www.tango-controls.org/static/PyTango/v723/doc/html/index.html">8.13</a></td>
<td>Update to PyTango 7.2.4</td>
<td>T. Coutinho</td>
</tr>
<tr class="row-even"><td>27/11/13</td>
<td><a class="reference external" href="http://www.tango-controls.org/static/PyTango/v811/doc/html/index.html">8.18</a></td>
<td>Update to PyTango 8.1.1</td>
<td>T. Coutinho</td>
</tr>
<tr class="row-odd"><td>16/05/14</td>
<td><a class="reference external" href="http://www.tango-controls.org/static/PyTango/v812/doc/html/index.html">8.19</a></td>
<td>Update to PyTango 8.1.2</td>
<td>T. Coutinho</td>
</tr>
<tr class="row-even"><td>30/09/14</td>
<td><a class="reference external" href="http://www.tango-controls.org/static/PyTango/v814/doc/html/index.html">8.20</a></td>
<td>Update to PyTango 8.1.4</td>
<td>T. Coutinho</td>
</tr>
<tr class="row-odd"><td>01/10/14</td>
<td><a class="reference external" href="http://www.tango-controls.org/static/PyTango/v815/doc/html/index.html">8.21</a></td>
<td>Update to PyTango 8.1.5</td>
<td>T. Coutinho</td>
</tr>
<tr class="row-even"><td>05/02/15</td>
<td><a class="reference external" href="http://www.esrf.fr/computing/cs/tango/pytango/v816/index.html">8.22</a></td>
<td>Update to PyTango 8.1.6</td>
<td>T. Coutinho</td>
</tr>
<tr class="row-odd"><td>03/02/16</td>
<td><a class="reference external" href="http://www.esrf.fr/computing/cs/tango/pytango/v818/index.html">8.23</a></td>
<td>Update to PyTango 8.1.8</td>
<td>T. Coutinho</td>
</tr>
<tr class="row-even"><td>12/08/16</td>
<td>8.24</td>
<td>Update to PyTango 8.1.9</td>
<td>V. Michel</td>
</tr>
<tr class="row-odd"><td>26/02/16</td>
<td><a class="reference external" href="http://www.esrf.fr/computing/cs/tango/pytango/v920">9.2.0a</a></td>
<td>Update to PyTango 9.2.0a</td>
<td>T. Coutinho</td>
</tr>
<tr class="row-even"><td>15/08/16</td>
<td><a class="reference external" href="http://pytango.readthedocs.io/en/v9.2.0">9.2.0</a></td>
<td>9.2.0 Release</td>
<td>V. Michel</td>
</tr>
<tr class="row-odd"><td>23/01/17</td>
<td><a class="reference external" href="http://pytango.readthedocs.io/en/v9.2.1">9.2.1</a></td>
<td>9.2.1 Release</td>
<td>V. Michel</td>
</tr>
<tr class="row-even"><td>27/09/17</td>
<td><a class="reference external" href="http://pytango.readthedocs.io/en/v9.2.2">9.2.2</a></td>
<td>9.2.2 Release</td>
<td>G. Cuni/V. Michel/J. Moldes</td>
</tr>
</tbody>
</table>
</div>
<div class="section" id="version-history">
<span id="pytango-version-history"></span><h2>Version history<a class="headerlink" href="#version-history" title="Permalink to this headline"></a></h2>
<table border="1" class="docutils">
<colgroup>
<col width="6%" />
<col width="94%" />
</colgroup>
<thead valign="bottom">
<tr class="row-odd"><th class="head">Version</th>
<th class="head">Changes</th>
</tr>
</thead>
<tbody valign="top">
<tr class="row-even"><td>9.2.2</td>
<td><p class="first">9.2.2 release.</p>
<dl class="last docutils">
<dt>Features:</dt>
<dd><ul class="first last simple">
<li><a class="reference external" href="https://github.com/tango-controls/pytango/pull/104">Pull Request #104: Pipe Events</a></li>
<li><a class="reference external" href="https://github.com/tango-controls/pytango/pull/106">Pull Request #106: Implement pipe write (client and server, issue #9)</a></li>
<li><a class="reference external" href="https://github.com/tango-controls/pytango/pull/122">Pull Request #122: Dynamic commands</a></li>
<li><a class="reference external" href="https://github.com/tango-controls/pytango/pull/124">Pull Request #124: Add forward attribute</a></li>
<li><a class="reference external" href="https://github.com/tango-controls/pytango/pull/129">Pull Request #129: Implement mandatory property (issue #30)</a></li>
</ul>
</dd>
<dt>Changes:</dt>
<dd><ul class="first last simple">
<li><a class="reference external" href="https://github.com/tango-controls/pytango/pull/109">Pull Request #109: Device Interface Change Events</a></li>
<li><a class="reference external" href="https://github.com/tango-controls/pytango/pull/113">Pull Request #113: Adding asyncio green mode documentation and a how-to on contributing</a></li>
<li><a class="reference external" href="https://github.com/tango-controls/pytango/pull/114">Pull Request #114: Added PEP8-ified files in tango module.</a></li>
<li><a class="reference external" href="https://github.com/tango-controls/pytango/pull/115">Pull Request #115: Commands polling tests (client and server)</a></li>
<li><a class="reference external" href="https://github.com/tango-controls/pytango/pull/116">Pull Request #116: Attribute polling tests (client and server)</a></li>
<li><a class="reference external" href="https://github.com/tango-controls/pytango/pull/117">Pull Request #117: Use official tango-controls conda channel</a></li>
<li><a class="reference external" href="https://github.com/tango-controls/pytango/pull/125">Pull Request #125: Forward attribute example</a></li>
<li><a class="reference external" href="https://github.com/tango-controls/pytango/pull/134">Pull Request #134: Linting pytango (with pylint + flake8)</a></li>
<li><a class="reference external" href="https://github.com/tango-controls/pytango/pull/137">Pull Request #137: Codacy badge in README and code quality policy in How to Contribute</a></li>
<li><a class="reference external" href="https://github.com/tango-controls/pytango/pull/143">Pull Request #143: Added missing PipeEventData &amp; DevIntrChangeEventData</a></li>
</ul>
</dd>
<dt>Bug fixes:</dt>
<dd><ul class="first last simple">
<li><a class="reference external" href="https://github.com/tango-controls/pytango/pull/85">Pull Request #85 (issue #84): Fix Gevent ThreadPool exceptions</a></li>
<li><a class="reference external" href="https://github.com/tango-controls/pytango/pull/94">Pull Request #94 (issue #93): Fix issues in setup file (GCC-7 build)</a></li>
<li><a class="reference external" href="https://github.com/tango-controls/pytango/pull/96">Pull Request #96: Filter badges from the long description</a></li>
<li><a class="reference external" href="https://github.com/tango-controls/pytango/pull/97">Pull Request #97: Fix/linker options</a></li>
<li><a class="reference external" href="https://github.com/tango-controls/pytango/pull/98">Pull Request #98: Refactor green mode for client and server APIs</a></li>
<li><a class="reference external" href="https://github.com/tango-controls/pytango/pull/101">Pull Request #101 (issue #100) check for None and return null string</a></li>
<li><a class="reference external" href="https://github.com/tango-controls/pytango/pull/102">Pull Request #102: Update server tests</a></li>
<li><a class="reference external" href="https://github.com/tango-controls/pytango/pull/103">Pull Request #103: Cache build objects to optimize travis builds</a></li>
<li><a class="reference external" href="https://github.com/tango-controls/pytango/pull/112">Pull Request #112 (issue #111): Use _DeviceClass as tango device class constructor</a></li>
<li><a class="reference external" href="https://github.com/tango-controls/pytango/pull/128">Pull Request #128 (issue #127): Set default worker in server.py</a></li>
<li><a class="reference external" href="https://github.com/tango-controls/pytango/pull/135">Pull Request #135: Better exception handling in server.run and test context (issue #131)</a></li>
<li><a class="reference external" href="https://github.com/tango-controls/pytango/pull/143">Pull Request #142 (issue #142): Added missing PipeEventData &amp; DevIntrChangeEventData</a></li>
<li><a class="reference external" href="https://github.com/tango-controls/pytango/pull/148">Pull Request #148 (issue #144): Expose utils helpers</a></li>
<li><a class="reference external" href="https://github.com/tango-controls/pytango/pull/149">Pull Request #149: Fix return value of proxy.subscribe_event</a></li>
<li><a class="reference external" href="https://github.com/tango-controls/pytango/pull/158">Pull Request #158 (issue #155): Fix timestamp and casing in utils.EventCallback</a></li>
</ul>
</dd>
</dl>
</td>
</tr>
<tr class="row-odd"><td>9.2.1</td>
<td><p class="first">9.2.1 release.</p>
<dl class="last docutils">
<dt>Features:</dt>
<dd><ul class="first last simple">
<li><a class="reference external" href="https://github.com/tango-cs/pytango/issues/70">Pull Requests #70: Add test_context and test_utils modules, used for pytango unit-testing</a></li>
</ul>
</dd>
<dt>Changes:</dt>
<dd><ul class="first last simple">
<li><a class="reference external" href="https://github.com/tango-cs/pytango/issues/51">Issue #51: Refactor platform specific code in setup file</a></li>
<li><a class="reference external" href="https://github.com/tango-cs/pytango/issues/67">Issue #67: Comply with PEP 440 for pre-releases</a></li>
<li><a class="reference external" href="https://github.com/tango-cs/pytango/issues/70">Pull Request #70: Add unit-testing for the server API</a></li>
<li><a class="reference external" href="https://github.com/tango-cs/pytango/issues/70">Pull Request #70: Configure Travis CI for continuous integration</a></li>
<li><a class="reference external" href="https://github.com/tango-cs/pytango/issues/76">Pull Request #76: Add unit-testing for the client API</a></li>
<li><a class="reference external" href="https://github.com/tango-cs/pytango/issues/78">Pull Request #78: Update the python version classifiers</a></li>
<li><a class="reference external" href="https://github.com/tango-cs/pytango/issues/80">Pull Request #80: Move tango object server to its own module</a></li>
<li><a class="reference external" href="https://github.com/tango-cs/pytango/issues/90">Pull Request #90: The metaclass definition for tango devices is no longer mandatory</a></li>
</ul>
</dd>
<dt>Bug fixes:</dt>
<dd><ul class="first last simple">
<li><a class="reference external" href="https://github.com/tango-cs/pytango/issues/24">Issue #24: Fix dev_status dangling pointer bug</a></li>
<li><a class="reference external" href="https://github.com/tango-cs/pytango/issues/57">Issue #57: Fix dev_state/status to be gevent safe</a></li>
<li><a class="reference external" href="https://github.com/tango-cs/pytango/issues/58">Issue #58: Server gevent mode internal call hangs</a></li>
<li><a class="reference external" href="https://github.com/tango-cs/pytango/issues/62">Pull Request #62: Several fixes in tango.databaseds</a></li>
<li><a class="reference external" href="https://github.com/tango-cs/pytango/issues/63">Pull Request #63: Follow up on issue #21 (Fix Group.get_device method)</a></li>
<li><a class="reference external" href="https://github.com/tango-cs/pytango/issues/64">Issue #64: Fix AttributeProxy.__dev_proxy to be initialized with python internals</a></li>
<li><a class="reference external" href="https://github.com/tango-cs/pytango/issues/74">Issue #74: Fix hanging with an asynchronous tango server fails to start</a></li>
<li><a class="reference external" href="https://github.com/tango-cs/pytango/issues/81">Pull Request #81: Fix DeviceImpl documentation</a></li>
<li><a class="reference external" href="https://github.com/tango-cs/pytango/issues/82">Issue #82: Fix attribute completion for device proxies with IPython &gt;= 4</a></li>
<li><a class="reference external" href="https://github.com/tango-cs/pytango/issues/84">Issue #84: Fix gevent threadpool exceptions</a></li>
</ul>
</dd>
</dl>
</td>
</tr>
<tr class="row-even"><td>9.2.0</td>
<td><p class="first">9.2.0 release.</p>
<p>Features:</p>
<blockquote>
<div><ul class="simple">
<li><a class="reference external" href="https://github.com/tango-cs/pytango/issues/37">Issue #37: Add display_level and polling_period as optional arguments to command decorator</a></li>
</ul>
</div></blockquote>
<p>Bug fixes:</p>
<blockquote>
<div><ul class="simple">
<li>Fix cache problem when using <cite>DeviceProxy</cite> through an <cite>AttributeProxy</cite></li>
<li>Fix compilation on several platforms</li>
<li><a class="reference external" href="https://github.com/tango-cs/pytango/issues/19">Issue #19: Defining new members in DeviceProxy has side effects</a></li>
<li>Fixed bug in <cite>beacon.add_device</cite></li>
<li>Fix for <cite>get_device_list</cite> if server_name is ‘*’</li>
<li>Fix <cite>get_device_attribute_property2</cite> if <cite>prop_attr</cite> is not <cite>None</cite></li>
<li>Accept <cite>StdStringVector</cite> in <cite>put_device_property</cite></li>
<li>Map ‘int’ to DevLong64 and ‘uint’ to DevULong64</li>
<li><a class="reference external" href="https://github.com/tango-cs/pytango/issues/22">Issue #22: Fix push_data_ready_event() deadlock</a></li>
<li><a class="reference external" href="https://github.com/tango-cs/pytango/issues/28">Issue #28: Fix compilation error for constants.cpp</a></li>
<li><a class="reference external" href="https://github.com/tango-cs/pytango/issues/21">Issue #21: Fix Group.get_device method</a></li>
<li><a class="reference external" href="https://github.com/tango-cs/pytango/issues/33">Issue #33: Fix internal server documentation</a></li>
</ul>
</div></blockquote>
<dl class="last docutils">
<dt>Changes:</dt>
<dd><ul class="first last simple">
<li>Move ITango to another project</li>
<li>Use <cite>setuptools</cite> instead of <cite>distutils</cite></li>
<li>Add <cite>six</cite> as a requirement</li>
<li>Refactor directory structure</li>
<li>Rename <cite>PyTango</cite> module to <cite>tango</cite> (<cite>import PyTango</cite> still works for backward compatibility)</li>
<li>Add a ReST readme for GitHub and PyPI</li>
</ul>
</dd>
<dt>ITango changes (moved to another project):</dt>
<dd><ul class="first last simple">
<li>Fix itango event logger for python 3</li>
<li>Avoid deprecation warning with IPython 4.x</li>
<li>Use entry points instead of scripts</li>
</ul>
</dd>
</dl>
</td>
</tr>
<tr class="row-odd"><td>9.2.0a</td>
<td><p class="first">9.2 alpha release. Missing:</p>
<blockquote>
<div><ul class="simple">
<li>writtable pipes (client and server)</li>
<li>dynamic commands (server)</li>
<li>device interface change event (client and server)</li>
<li>pipe event (client and server)</li>
</ul>
</div></blockquote>
<p>Bug fixes:</p>
<blockquote class="last">
<div><ul class="simple">
<li><a class="reference external" href="https://sourceforge.net/p/tango-cs/bugs/776/">776:  [pytango][8.1.8] SyntaxError: invalid syntax</a></li>
</ul>
</div></blockquote>
</td>
</tr>
<tr class="row-even"><td>8.1.9</td>
<td><p class="first">Features:</p>
<blockquote>
<div><ul class="simple">
<li><a class="reference external" href="https://github.com/tango-cs/pytango/pull/2">PR #2: asyncio support for both client and server API</a></li>
<li><a class="reference external" href="https://github.com/tango-cs/pytango/pull/6">PR #6: Expose AutoTangoMonitor and AutoTangoAllowThreads</a></li>
</ul>
</div></blockquote>
<p>Bug fixes:</p>
<blockquote class="last">
<div><ul class="simple">
<li><a class="reference external" href="https://github.com/tango-cs/pytango/pull/31">PR #31: Get -l flags from pkg-config</a></li>
<li><a class="reference external" href="https://github.com/tango-cs/pytango/pull/15">PR #15: Rename itango script to itango3 for python3</a></li>
<li><a class="reference external" href="https://github.com/tango-cs/pytango/pull/14">PR #14: Avoid deprecation warning with IPython 4.x</a></li>
</ul>
</div></blockquote>
</td>
</tr>
<tr class="row-odd"><td>8.1.8</td>
<td><p class="first">Features:</p>
<blockquote>
<div><ul class="simple">
<li><a class="reference external" href="https://github.com/tango-cs/pytango/pull/3">PR #3: Add a run_server class method to Device</a></li>
<li><a class="reference external" href="https://github.com/tango-cs/pytango/pull/4">PR #4: Add device inheritance</a></li>
<li><a class="reference external" href="https://sourceforge.net/p/tango-cs/feature-requests/110">110:  device property with auto update in database</a></li>
</ul>
</div></blockquote>
<p>Bug fixes:</p>
<blockquote class="last">
<div><ul class="simple">
<li><a class="reference external" href="https://sourceforge.net/p/tango-cs/bugs/690/">690: Description attribute property</a></li>
<li><a class="reference external" href="https://sourceforge.net/p/tango-cs/bugs/700/">700: [pytango] useless files in the source distribution</a></li>
<li><a class="reference external" href="https://sourceforge.net/p/tango-cs/bugs/701/">701: Memory leak in command with list argument</a></li>
<li><a class="reference external" href="https://sourceforge.net/p/tango-cs/bugs/704/">704: Assertion failure when calling command with string array input type</a></li>
<li><a class="reference external" href="https://sourceforge.net/p/tango-cs/bugs/705/">705: Support boost_python lib name on Gentoo</a></li>
<li><a class="reference external" href="https://sourceforge.net/p/tango-cs/bugs/714">714: Memory leak in PyTango for direct server command calls</a></li>
<li><a class="reference external" href="https://sourceforge.net/p/tango-cs/bugs/718/">718: OverflowErrors with float types in 8.1.6</a></li>
<li><a class="reference external" href="https://sourceforge.net/p/tango-cs/bugs/724/">724: PyTango DeviceProxy.command_inout(&lt;str&gt;) memory leaks</a></li>
<li><a class="reference external" href="https://sourceforge.net/p/tango-cs/bugs/736/">736: pytango FTBFS with python 3.4</a></li>
<li><a class="reference external" href="https://sourceforge.net/p/tango-cs/bugs/736/">747: PyTango event callback in gevent mode gets called in non main thread</a></li>
</ul>
</div></blockquote>
</td>
</tr>
<tr class="row-even"><td>8.1.6</td>
<td><p class="first">Bug fixes:</p>
<blockquote class="last">
<div><ul class="simple">
<li><a class="reference external" href="https://sourceforge.net/p/tango-cs/bugs/698">698: PyTango.Util discrepancy</a></li>
<li><a class="reference external" href="https://sourceforge.net/p/tango-cs/bugs/697">697: PyTango.server.run does not accept old Device style classes</a></li>
</ul>
</div></blockquote>
</td>
</tr>
<tr class="row-odd"><td>8.1.5</td>
<td><p class="first">Bug fixes:</p>
<blockquote class="last">
<div><ul class="simple">
<li><a class="reference external" href="https://sourceforge.net/p/tango-cs/bugs/687/">687: [pytango] 8.1.4 unexpected files in the source package</a></li>
<li><a class="reference external" href="https://sourceforge.net/p/tango-cs/bugs/688/">688: PyTango 8.1.4 new style server commands don’t work</a></li>
</ul>
</div></blockquote>
</td>
</tr>
<tr class="row-even"><td>8.1.4</td>
<td><p class="first">Features:</p>
<blockquote>
<div><ul class="simple">
<li><a class="reference external" href="https://sourceforge.net/p/tango-cs/feature-requests/107">107: Nice to check Tango/PyTango version at runtime</a></li>
</ul>
</div></blockquote>
<p>Bug fixes:</p>
<blockquote class="last">
<div><ul class="simple">
<li><a class="reference external" href="https://sourceforge.net/p/tango-cs/bugs/659/">659: segmentation fault when unsubscribing from events</a></li>
<li><a class="reference external" href="https://sourceforge.net/p/tango-cs/bugs/664/">664: problem while installing PyTango 8.1.1 with pip (using pip 1.4.1)</a></li>
<li><a class="reference external" href="https://sourceforge.net/p/tango-cs/bugs/678/">678: [pytango] 8.1.2 unexpected files in the source package</a></li>
<li><a class="reference external" href="https://sourceforge.net/p/tango-cs/bugs/679/">679: PyTango.server tries to import missing __builtin__ module on Python 3</a></li>
<li><a class="reference external" href="https://sourceforge.net/p/tango-cs/bugs/680/">680: Cannot import PyTango.server.run</a></li>
<li><a class="reference external" href="https://sourceforge.net/p/tango-cs/bugs/686/">686: Device property substitution for a multi-device server</a></li>
</ul>
</div></blockquote>
</td>
</tr>
<tr class="row-odd"><td>8.1.3</td>
<td><em>SKIPPED</em></td>
</tr>
<tr class="row-even"><td>8.1.2</td>
<td><p class="first">Features:</p>
<blockquote>
<div><ul class="simple">
<li><a class="reference external" href="https://sourceforge.net/p/tango-cs/feature-requests/98">98: PyTango.server.server_run needs additional post_init_callback parameter</a></li>
<li><a class="reference external" href="https://sourceforge.net/p/tango-cs/feature-requests/102">102: DevEncoded attribute should support a python buffer object</a></li>
<li><a class="reference external" href="https://sourceforge.net/p/tango-cs/feature-requests/103">103: Make creation of *EventData objects possible in PyTango</a></li>
</ul>
</div></blockquote>
<p>Bug fixes:</p>
<blockquote class="last">
<div><ul class="simple">
<li><a class="reference external" href="https://sourceforge.net/p/tango-cs/bugs/641/">641: python3 error handling issue</a></li>
<li><a class="reference external" href="https://sourceforge.net/p/tango-cs/bugs/648/">648: PyTango unicode method parameters fail</a></li>
<li><a class="reference external" href="https://sourceforge.net/p/tango-cs/bugs/649/">649: write_attribute of spectrum/image fails in PyTango without numpy</a></li>
<li><a class="reference external" href="https://sourceforge.net/p/tango-cs/bugs/650/">650: [pytango] 8.1.1 not compatible with ipyton 1.2.0-rc1</a></li>
<li><a class="reference external" href="https://sourceforge.net/p/tango-cs/bugs/651/">651: PyTango segmentation fault when run a DS that use attr_data.py</a></li>
<li><a class="reference external" href="https://sourceforge.net/p/tango-cs/bugs/660/">660: command_inout_asynch (polling mode) fails</a></li>
<li><a class="reference external" href="https://sourceforge.net/p/tango-cs/bugs/666/">666: PyTango shutdown sometimes blocks.</a></li>
</ul>
</div></blockquote>
</td>
</tr>
<tr class="row-odd"><td>8.1.1</td>
<td><p class="first">Features:</p>
<blockquote>
<div><ul class="simple">
<li>Implemented tango C++ 8.1 API</li>
</ul>
</div></blockquote>
<p>Bug fixes:</p>
<blockquote class="last">
<div><ul class="simple">
<li><a class="reference external" href="https://sourceforge.net/p/tango-cs/bugs/527/">527: set_value() for ULong64</a></li>
<li><a class="reference external" href="https://sourceforge.net/p/tango-cs/bugs/573/">573: [pytango] python3 error with unregistered device</a></li>
<li><a class="reference external" href="https://sourceforge.net/p/tango-cs/bugs/611/">611: URGENT fail to write attribute with PyTango 8.0.3</a></li>
<li><a class="reference external" href="https://sourceforge.net/p/tango-cs/bugs/612/">612: [pytango][8.0.3] failed to build from source on s390</a></li>
<li><a class="reference external" href="https://sourceforge.net/p/tango-cs/bugs/615/">615: Threading problem when setting a DevULong64 attribute</a></li>
<li><a class="reference external" href="https://sourceforge.net/p/tango-cs/bugs/622/">622: PyTango broken when running on Ubuntu 13</a></li>
<li><a class="reference external" href="https://sourceforge.net/p/tango-cs/bugs/626/">626: attribute_history extraction can raised an exception</a></li>
<li><a class="reference external" href="https://sourceforge.net/p/tango-cs/bugs/628/">628: Problem in installing PyTango 8.0.3 on Scientific Linux 6</a></li>
<li><a class="reference external" href="https://sourceforge.net/p/tango-cs/bugs/635/">635: Reading of ULong64 attributes does not work</a></li>
<li><a class="reference external" href="https://sourceforge.net/p/tango-cs/bugs/636/">636: PyTango log messages are not filtered by level</a></li>
<li><a class="reference external" href="https://sourceforge.net/p/tango-cs/bugs/637/">637: [pytango] segfault doing write_attribute on Group</a></li>
</ul>
</div></blockquote>
</td>
</tr>
<tr class="row-even"><td>8.1.0</td>
<td><em>SKIPPED</em></td>
</tr>
<tr class="row-odd"><td>8.0.3</td>
<td><dl class="first docutils">
<dt>Features:</dt>
<dd><ul class="first last simple">
<li><a class="reference external" href="https://sourceforge.net/p/tango-cs/feature-requests/88">88: Implement Util::server_set_event_loop method in python</a></li>
</ul>
</dd>
</dl>
<p>Bug fixes:</p>
<blockquote class="last">
<div><ul class="simple">
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=3576353&amp;group_id=57612&amp;atid=484769">3576353: [pytango] segfault on ‘RestartServer’</a></li>
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=3579062&amp;group_id=57612&amp;atid=484769">3579062: [pytango] Attribute missing methods</a></li>
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=3586337&amp;group_id=57612&amp;atid=484769">3586337: [pytango] Some DeviceClass methods are not python safe</a></li>
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=3598514&amp;group_id=57612&amp;atid=484769">3598514: DeviceProxy.__setattr__ break python’s descriptors</a></li>
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=3607779&amp;group_id=57612&amp;atid=484769">3607779: [pytango] IPython 0.10 error</a></li>
<li><a class="reference external" href="https://sourceforge.net/p/tango-cs/bugs/598/">598: Import DLL by PyTango failed on windows</a></li>
<li><a class="reference external" href="https://sourceforge.net/p/tango-cs/bugs/605/">605: [pytango] use distutils.version module</a></li>
</ul>
</div></blockquote>
</td>
</tr>
<tr class="row-even"><td>8.0.2</td>
<td><p class="first">Bug fixes:</p>
<blockquote class="last">
<div><ul class="simple">
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=3570970&amp;group_id=57612&amp;atid=484769">3570970: [pytango] problem during the python3 building</a></li>
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=3570971&amp;group_id=57612&amp;atid=484769">3570971: [pytango] itango does not work without qtconsole</a></li>
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=3570972&amp;group_id=57612&amp;atid=484769">3570972: [pytango] warning/error when building 8.0.0</a></li>
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=3570975&amp;group_id=57612&amp;atid=484769">3570975: [pytango] problem during use of python3 version</a></li>
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=3574099&amp;group_id=57612&amp;atid=484769">3574099: [pytango] compile error with gcc &lt; 4.5</a></li>
</ul>
</div></blockquote>
</td>
</tr>
<tr class="row-odd"><td>8.0.1</td>
<td><em>SKIPPED</em></td>
</tr>
<tr class="row-even"><td>8.0.0</td>
<td><p class="first">Features:</p>
<blockquote>
<div><ul class="simple">
<li>Implemented tango C++ 8.0 API</li>
<li>Python 3k compatible</li>
</ul>
</div></blockquote>
<p>Bug fixes:</p>
<blockquote class="last">
<div><ul class="simple">
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=3023857&amp;group_id=57612&amp;atid=484769">3023857: DevEncoded write attribute not supported</a></li>
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=3521545&amp;group_id=57612&amp;atid=484769">3521545: [pytango] problem with tango profile</a></li>
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=3530535&amp;group_id=57612&amp;atid=484769">3530535: PyTango group writting fails</a></li>
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=3564959&amp;group_id=57612&amp;atid=484769">3564959: EncodedAttribute.encode_xxx() methods don’t accept bytearray</a></li>
</ul>
</div></blockquote>
</td>
</tr>
<tr class="row-odd"><td>7.2.4</td>
<td><p class="first">Bug fixes:</p>
<blockquote class="last">
<div><ul class="simple">
<li><a class="reference external" href="https://sourceforge.net/p/tango-cs/bugs/551/">551: [pytango] Some DeviceClass methods are not python safe</a></li>
</ul>
</div></blockquote>
</td>
</tr>
<tr class="row-even"><td>7.2.3</td>
<td><p class="first">Features:</p>
<blockquote>
<div><ul class="simple">
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=3495607&amp;group_id=57612&amp;atid=484772">3495607: DeviceClass.device_name_factory is missing</a></li>
</ul>
</div></blockquote>
<p>Bug fixes:</p>
<blockquote class="last">
<div><ul class="simple">
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=3103588&amp;group_id=57612&amp;atid=484769">3103588: documentation of PyTango.Attribute.Group</a></li>
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=3458336&amp;group_id=57612&amp;atid=484769">3458336: Problem with pytango 7.2.2</a></li>
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=3463377&amp;group_id=57612&amp;atid=484769">3463377: PyTango memory leak in read encoded attribute</a></li>
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=3487930&amp;group_id=57612&amp;atid=484769">3487930: [pytango] wrong python dependency</a></li>
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=3511509&amp;group_id=57612&amp;atid=484769">3511509: Attribute.set_value_date_quality for encoded does not work</a></li>
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=3514457&amp;group_id=57612&amp;atid=484769">3514457: [pytango]  TANGO_HOST multi-host support</a></li>
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=3520739&amp;group_id=57612&amp;atid=484769">3520739: command_history(…) in  PyTango</a></li>
</ul>
</div></blockquote>
</td>
</tr>
<tr class="row-odd"><td>7.2.2</td>
<td><p class="first">Features:</p>
<blockquote>
<div><ul class="simple">
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=3305251&amp;group_id=57612&amp;atid=484769">3305251: DS dynamic attributes discards some Attr properties</a></li>
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=3365792&amp;group_id=57612&amp;atid=484772">3365792: DeviceProxy.&lt;cmd_name&gt; could be documented</a></li>
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=3386079&amp;group_id=57612&amp;atid=484772">3386079: add support for ipython 0.11</a></li>
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=3437654&amp;group_id=57612&amp;atid=484772">3437654: throw python exception as tango exception</a></li>
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=3447477&amp;group_id=57612&amp;atid=484772">3447477: spock profile installation</a></li>
</ul>
</div></blockquote>
<p>Bug fixes:</p>
<blockquote class="last">
<div><ul class="simple">
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=3372371&amp;group_id=57612&amp;atid=484769">3372371: write attribute of DevEncoded doesn’t work</a></li>
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=3374026&amp;group_id=57612&amp;atid=484769">3374026: [pytango] pyflakes warning</a></li>
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=3404771&amp;group_id=57612&amp;atid=484769">3404771: PyTango.MultiAttribute.get_attribute_list missing</a></li>
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=3405580&amp;group_id=57612&amp;atid=484769">3405580: PyTango.MultiClassAttribute missing</a></li>
</ul>
</div></blockquote>
</td>
</tr>
<tr class="row-even"><td>7.2.1</td>
<td><em>SKIPPED</em></td>
</tr>
<tr class="row-odd"><td>7.2.0</td>
<td><p class="first">Features:</p>
<blockquote class="last">
<div><ul class="simple">
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=3286678&amp;group_id=57612&amp;atid=484772">3286678: Add missing EncodedAttribute JPEG methods</a></li>
</ul>
</div></blockquote>
</td>
</tr>
<tr class="row-even"><td>7.1.6</td>
<td><p class="first">Bug fixes:</p>
<blockquote class="last">
<div><ul class="simple">
<li>7.1.5 distribution is missing some files</li>
</ul>
</div></blockquote>
</td>
</tr>
<tr class="row-odd"><td>7.1.5</td>
<td><p class="first">Bug fixes:</p>
<blockquote class="last">
<div><ul class="simple">
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=3284174&amp;group_id=57612&amp;atid=484769">3284174: 7.1.4 does not build with gcc 4.5 and tango 7.2.6</a></li>
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=3284265&amp;group_id=57612&amp;atid=484769">3284265: [pytango][7.1.4] a few files without licence and copyright</a></li>
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=3284318&amp;group_id=57612&amp;atid=484769">3284318: copyleft vs copyright</a></li>
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=3284434&amp;group_id=57612&amp;atid=484769">3284434: [pytango][doc] few ERROR during the doc generation</a></li>
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=3284435&amp;group_id=57612&amp;atid=484769">3284435: [pytango][doc] few warning during the doc generation</a></li>
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=3284440&amp;group_id=57612&amp;atid=484769">3284440: [pytango][spock] the profile can’t be installed</a></li>
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=3285185&amp;group_id=57612&amp;atid=484769">3285185: PyTango Device Server does not load Class Properties values</a></li>
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=3286055&amp;group_id=57612&amp;atid=484769">3286055: PyTango 7.1.x DS using Tango C++ 7.2.x seg faults on exit</a></li>
</ul>
</div></blockquote>
</td>
</tr>
<tr class="row-even"><td>7.1.4</td>
<td><p class="first">Features:</p>
<blockquote>
<div><ul class="simple">
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=3274309&amp;group_id=57612&amp;atid=484772">3274309: Generic Callback for events</a></li>
</ul>
</div></blockquote>
<p>Bug fixes:</p>
<blockquote>
<div><ul class="simple">
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=3011775&amp;group_id=57612&amp;atid=484769">3011775: Seg Faults due to removed dynamic attributes</a></li>
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=3105169&amp;group_id=57612&amp;atid=484769">3105169: PyTango 7.1.3 does not compile with Tango 7.2.X</a></li>
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=3107243&amp;group_id=57612&amp;atid=484769">3107243: spock profile does not work with python 2.5</a></li>
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=3124427&amp;group_id=57612&amp;atid=484769">3124427: PyTango.WAttribute.set_max_value() changes min value</a></li>
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=3170399&amp;group_id=57612&amp;atid=484769">3170399: Missing documentation about is_&lt;attr&gt;_allowed method</a></li>
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=3189082&amp;group_id=57612&amp;atid=484769">3189082: Missing get_properties() for Attribute class</a></li>
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=3196068&amp;group_id=57612&amp;atid=484769">3196068: delete_device() not called after server_admin.Kill()</a></li>
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=3257286&amp;group_id=57612&amp;atid=484769">3257286: Binding crashes when reading a WRITE string attribute</a></li>
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=3267628&amp;group_id=57612&amp;atid=484769">3267628: DP.read_attribute(, extract=List/tuple) write value is wrong</a></li>
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=3274262&amp;group_id=57612&amp;atid=484769">3274262: Database.is_multi_tango_host missing</a></li>
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=3274319&amp;group_id=57612&amp;atid=484769">3274319: EncodedAttribute is missing in PyTango (&lt;= 7.1.3)</a></li>
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=3277269&amp;group_id=57612&amp;atid=484769">3277269: read_attribute(DevEncoded) is not numpy as expected</a></li>
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=3278946&amp;group_id=57612&amp;atid=484769">3278946: DeviceAttribute copy constructor is not working</a></li>
</ul>
</div></blockquote>
<p>Documentation:</p>
<blockquote class="last">
<div><ul class="simple">
<li>Added <a class="reference internal" href="utilities.html#utilities"><span class="std std-ref">The Utilities API</span></a> chapter</li>
<li>Added <a class="reference internal" href="encoded.html#encoded"><span class="std std-ref">Encoded API</span></a> chapter</li>
<li>Improved <a class="reference internal" href="howto.html#server"><span class="std std-ref">Write a server (original API)</span></a> chapter</li>
</ul>
</div></blockquote>
</td>
</tr>
<tr class="row-odd"><td>7.1.3</td>
<td><p class="first">Features:</p>
<blockquote>
<div><ul class="simple">
<li>tango logging with print statement</li>
<li>tango logging with decorators</li>
<li>from sourceforge:</li>
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=3060380&amp;group_id=57612&amp;atid=484772">3060380: ApiUtil should be exported to PyTango</a></li>
</ul>
</div></blockquote>
<p>Bug fixes:</p>
<blockquote class="last">
<div><ul class="simple">
<li>added licence header to all source code files</li>
<li>spock didn’t work without TANGO_HOST env. variable (it didn’t recognize tangorc)</li>
<li>spock should give a proper message if it tries to be initialized outside ipython</li>
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=3048798&amp;group_id=57612&amp;atid=484769">3048798: licence issue GPL != LGPL</a></li>
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=3073378&amp;group_id=57612&amp;atid=484769">3073378: DeviceImpl.signal_handler raising exception crashes DS</a></li>
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=3088031&amp;group_id=57612&amp;atid=484769">3088031: Python DS unable to read DevVarBooleanArray property</a></li>
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=3102776&amp;group_id=57612&amp;atid=484769">3102776: PyTango 7.1.2 does not work with python 2.4 &amp; boost 1.33.0</a></li>
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=3102778&amp;group_id=57612&amp;atid=484769">3102778: Fix compilation warnings in linux</a></li>
</ul>
</div></blockquote>
</td>
</tr>
<tr class="row-even"><td>7.1.2</td>
<td><p class="first">Features:</p>
<blockquote>
<div><ul class="simple">
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=2995964&amp;group_id=57612&amp;atid=484772">2995964: Dynamic device creation</a></li>
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=3010399&amp;group_id=57612&amp;atid=484772">3010399: The DeviceClass.get_device_list that exists in C++ is missing</a></li>
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=3023686&amp;group_id=57612&amp;atid=484772">3023686: Missing DeviceProxy.&lt;attribute name&gt;</a></li>
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=3025396&amp;group_id=57612&amp;atid=484772">3025396: DeviceImpl is missing some CORBA methods</a></li>
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=3032005&amp;group_id=57612&amp;atid=484772">3032005: IPython extension for PyTango</a></li>
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=3033476&amp;group_id=57612&amp;atid=484772">3033476: Make client objects pickable</a></li>
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=3039902&amp;group_id=57612&amp;atid=484772">3039902: PyTango.Util.add_class would be useful</a></li>
</ul>
</div></blockquote>
<p>Bug fixes:</p>
<blockquote class="last">
<div><ul class="simple">
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=2975940&amp;group_id=57612&amp;atid=484769">2975940: DS command with DevVarCharArray return type fails</a></li>
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=3000467&amp;group_id=57612&amp;atid=484769">3000467: DeviceProxy.unlock is LOCKING instead of unlocking!</a></li>
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=3010395&amp;group_id=57612&amp;atid=484769">3010395: Util.get_device_* methods don’t work</a></li>
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=3010425&amp;group_id=57612&amp;atid=484769">3010425: Database.dev_name does not work</a></li>
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=3016949&amp;group_id=57612&amp;atid=484769">3016949: command_inout_asynch callback does not work</a></li>
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=3020300&amp;group_id=57612&amp;atid=484769">3020300: PyTango does not compile with gcc 4.1.x</a></li>
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=3030399&amp;group_id=57612&amp;atid=484769">3030399: Database put(delete)_attribute_alias generates segfault</a></li>
</ul>
</div></blockquote>
</td>
</tr>
<tr class="row-odd"><td>7.1.1</td>
<td><p class="first">Features:</p>
<blockquote>
<div><ul class="simple">
<li>Improved setup script</li>
<li>Interfaced with PyPI</li>
<li>Cleaned build script warnings due to unclean python C++ macro definitions</li>
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=2985993&amp;group_id=57612&amp;atid=484772">2985993: PyTango numpy command support</a></li>
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=2971217&amp;group_id=57612&amp;atid=484772">2971217: PyTango.GroupAttrReplyList slicing</a></li>
</ul>
</div></blockquote>
<p>Bug fixes:</p>
<blockquote class="last">
<div><ul class="simple">
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=2983299&amp;group_id=57612&amp;atid=484769">2983299: Database.put_property() deletes the property</a></li>
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=2953689&amp;group_id=57612&amp;atid=484769">2953689: can not write_attribute scalar/spectrum/image</a></li>
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=2953030&amp;group_id=57612&amp;atid=484769">2953030: PyTango doc installation</a></li>
</ul>
</div></blockquote>
</td>
</tr>
<tr class="row-even"><td>7.1.0</td>
<td><p class="first">Features:</p>
<blockquote>
<div><ul class="simple">
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=2908176&amp;group_id=57612&amp;atid=484772">2908176: read_*, write_* and is_*_allowed() methods can now be defined</a></li>
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=2941036&amp;group_id=57612&amp;atid=484772">2941036: TimeVal conversion to time and datetime</a></li>
<li>added str representation on Attr, Attribute, DeviceImpl and DeviceClass</li>
</ul>
</div></blockquote>
<p>Bug fixes:</p>
<blockquote class="last">
<div><ul class="simple">
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=2903755group_id=57612&amp;atid=484769">2903755: get_device_properties() bug reading DevString properties</a></li>
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=2909927&amp;group_id=57612&amp;atid=484769">2909927: PyTango.Group.read_attribute() return values</a></li>
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=2914194&amp;group_id=57612&amp;atid=484769">2914194: DevEncoded does not work</a></li>
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=2916397&amp;group_id=57612&amp;atid=484769">2916397: PyTango.DeviceAttribute copy constructor does not work</a></li>
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=2936173&amp;group_id=57612&amp;atid=484769">2936173: PyTango.Group.read_attributes() fails</a></li>
<li><a class="reference external" href="https://sourceforge.net/tracker/?func=detail&amp;aid=2949099&amp;group_id=57612&amp;atid=484769">2949099: Missing PyTango.Except.print_error_stack</a></li>
</ul>
</div></blockquote>
</td>
</tr>
<tr class="row-odd"><td>7.1.0rc1</td>
<td><p class="first">Features:</p>
<blockquote>
<div><ul class="simple">
<li>v = image_attribute.get_write_value() returns square sequences (arrays of
arrays, or numpy objects) now instead of flat lists. Also for spectrum
attributes a numpy is returned by default now instead.</li>
<li>image_attribute.set_value(v) accepts numpy arrays now or square sequences
instead of just flat lists. So, dim_x and dim_y are useless now. Also the
numpy path is faster.</li>
<li>new enum AttrSerialModel</li>
<li>Attribute new methods: set(get)_attr_serial_model, set_change_event,
set_archive_event, is_change_event, is_check_change_event,
is_archive_criteria, is_check_archive_criteria, remove_configuration</li>
<li>added support for numpy scalars in tango operations like write_attribute
(ex: now a DEV_LONG attribute can receive a numpy.int32 argument in a
write_attribute method call)</li>
</ul>
</div></blockquote>
<p>Bug fixes:</p>
<blockquote>
<div><ul class="simple">
<li>DeviceImpl.set_value for scalar attributes</li>
<li>DeviceImpl.push_***_event</li>
<li>server commands with DevVar***StringArray as parameter or as return type</li>
<li>in windows,a bug in PyTango.Util prevented servers from starting up</li>
<li>DeviceImpl.get_device_properties for string properties assigns only first
character of string to object member instead of entire string</li>
<li>added missing methods to Util</li>
<li>exported SubDevDiag class</li>
<li>error in read/events of attributes of type DevBoolean READ_WRITE</li>
<li>error in automatic unsubscribe events of DeviceProxy when the object
disapears (happens only on some compilers with some optimization flags)</li>
<li>fix possible bug when comparing attribute names in DeviceProxy</li>
<li>pretty print of DevFailed -&gt; fix deprecation warning in python 2.6</li>
<li>device class properties where not properly fetched when there is no
property value defined</li>
<li>memory leak when converting DevFailed exceptions from C++ to python</li>
<li>python device server file without extension does not start</li>
</ul>
</div></blockquote>
<p>Documentation:</p>
<blockquote class="last">
<div><ul class="simple">
<li>Improved FAQ</li>
<li>Improved compilation chapter</li>
<li>Improved migration information</li>
</ul>
</div></blockquote>
</td>
</tr>
</tbody>
</table>
</div>
</div>


          </div>
        </div>
      </div>
      <div class="clearer"></div>
    </div>
    <div class="related" role="navigation" aria-label="related navigation">
      <h3>Navigation</h3>
      <ul>
        <li class="right" style="margin-right: 10px">
          <a href="genindex.html" title="General Index"
             >index</a></li>
        <li class="right" >
          <a href="py-modindex.html" title="Python Module Index"
             >modules</a> |</li>
        <li class="right" >
          <a href="tep/tep-0002.html" title="TEP 2 - Tango database serverless"
             >previous</a> |</li>
    <li><a href="index.html">home</a>|&nbsp;</li>
    <li><a href="start.html">getting started</a>|&nbsp;</li>
    <li><a href="quicktour.html">quick tour</a>|&nbsp;</li>
    <li><a href="howto.html">how to</a>|&nbsp;</li>
    <li><a href="faq.html">FAQ</a>|&nbsp;</li>
    <li><a href="contents.html">documentation (v9.2.2)</a> &raquo;</li>
 
      </ul>
    </div>
    <div class="footer" role="contentinfo">
        &#169; Copyright Except where otherwise noted, content on this site is
licensed under a Creative Commons Attribution 3.0 License.
      Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.6.6.
    </div>
  </body>
</html>