PythonScanClient / PyScanClient

Python Client for CS-Studio Scan Service
Eclipse Public License 1.0
3 stars 4 forks source link

Table Scan range() not expanded for single value #20

Closed kasemir closed 8 years ago

kasemir commented 8 years ago

In a table scan, a cell with range(175,245,70) is not expanded, resulting in Set('X', 'range(175,245,70)') which then fails.

Reason: The range has just one element, so the table doesn't "grow", and thus the original cell value is used.

That specific example is likely a user error, they wanted to use range(175,245,70) to get [ 175, 245 ] and not just [175], but the table scan should still expand the ill-configured range.