[Python-modules-commits] [pyvisa-py] branch master updated (18c6120 -> d68be3c)

Ruben Undheim rubund-guest at moszumanska.debian.org
Tue Sep 1 20:45:59 UTC 2015


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

rubund-guest pushed a change to branch master
in repository pyvisa-py.

      from  18c6120   Added more to changelog
      adds  861b2c3   Back to development: 0.2
      adds  b9f2671   Proper error reporting when PySerial is not installed
      adds  b9a325d   Updated CHANGES
      adds  5e6aa4d   Update README
      adds  def3f2e   Update index.rst
      adds  2587526   Merge branch 'patch-1' of git://github.com/cmarqu/pyvisa-py into cmarqu-master
      adds  8cb704f   Merge branch 'cmarqu-master'
      adds  5c993a2   Adding missing return value in error case
      adds  2eb96ec   Support for non-decimal numbers
      adds  092af62   Fixing missing return values
      adds  3c24e17   Merge branch 't-kopp-master'
      adds  fee46d8   Redefined _get_attribute to return value, code
      adds  5a71ca6   Add support for USB Raw devices
      adds  2675b13   Taking back wrong indentation change
      adds  07fb811   Common base for usb tmc and usb raw
      adds  79d0fc4   Merge branch 't-kopp-master'
      adds  44b92f1   Removed abc
       new  7879a2c   Add TCPIP test
       new  2a29e2c   [WIP] GPIB support via linux-gpib
       new  e3a9e58   [WIP] GPIB support
       new  0ce8b71   Try to import GPIBSession in highlevel.py
       new  82f05d3   Fix GPIB timout getting/setting
       new  51d710c   Fix copy/paste mistake
       new  3d2308a   Improve timeout lookup
       new  919d10d   Partial implementation of close() for GPIBSession
       new  14de693   Implement some GPIB attributes
       new  a4c784c   Store GPIB device handle in an instance attribute
       new  7137bd7   Merge branch 'bessman-gpib'
       new  8b4d166   Fix PySerial version reporting
       new  25f1795   Updated CHANGES and AUTHORS
       new  fbf9c87   Changes GPIBSession.list_resource so no error is raised if linux-gpib not installed.
       new  5a8fcc9   Change serial to properly raise error if pyserial not there
       new  5c972a3   Changed USB Session error reporting
       new  5ce14f9   Cosmetics
       new  0ea232a   Remove test_serial
       new  4d16045   Added list_resources to VisaLibrary
       new  96ba5b0   Use pyvisa compat/struct.py for python < 2.7.8
       new  af5e2ad   Merge branch 'daritter-compat_struct'
       new  d37d2b8   0 is a valid physical address for GPIB INSTR
       new  7172d2d   GPIBSession: Return 0 on write error even if the error is not a timeout
       new  59aca02   Remove GPIB INTFC attributes
       new  2882c2e   Exclude system controller from output of GPIBSession.list_resources
       new  bdb303f   Add more GPIB INSTR attributes
       new  d0473e3   Fix minor spelling error in highlevel.py
       new  508f1d9   Added backend information to logger
       new  6a4ebe2   Log information about Session importing
       new  f88a5c6   Migrated to pyvisa.rname
       new  c8e964a   Removed tests for modules which are now in PyVISA
       new  dd3ab0a   Upgraded to rname module in pyvisa
       new  a7294ab   Moved to rname
       new  20bc0ea   Removed parse_resource, now in pyvisa
       new  000e6cd   Updated requirements and version
       new  7f8ec4b   python3 fix
       new  3b3f4a7   fix double status report
       new  2cc5bdb   Merge branch 'master' of git://github.com/sibbi77/pyvisa-py into sibbi77-master
       new  7956676   Merge branch 'sibbi77-master'
       new  362eca2   fix large binary reads
       new  f3a0f95   Add better error message when libraries used by PyUSB are not installed
       new  3332223   Added logging to rpc
       new  3573428   Import both USB devices in single line to avoid duplicated import
       new  bc744e6   Preliminary support for TCPIP Socket
       new  3a6b72e   Fix TCPIP Socket
       new  8c0af80   TCPIP Socket: Cleanup tabs and add some comments
       new  ef0fc09   Merge branch 'thliebig-master'
       new  3fa3917   VXI11 protocol performance enhancement
       new  aa854b9   Merge branch 'alexforencich-master'
       new  ccf755f   Implemented query in list_resources using rname.filter
       new  b5b30f9   Requires PyVISA >= 1.8
       new  77cc30c   Fixed timeout in SerialSession
       new  3551f8f   Fixed logging of unicode string on certain versions of Python
       new  3e9e60b   Updated CHANGES and AUTHORS
       new  7f40857   Preparing release 0.2
       new  0556b42   Merge tag 'upstream/0.2'
       new  bf06f42   New changelog entry, updated copyright
       new  d68be3c   Added version dependency on python-pyvisa and python3-pyvisa

The 58 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.


Summary of changes:
 AUTHORS                            |   7 +
 CHANGES                            |  30 +++-
 README                             |   2 +-
 debian/changelog                   |   9 ++
 debian/control                     |   4 +-
 debian/copyright                   |   2 +-
 docs/index.rst                     |  10 +-
 pyvisa-py/__init__.py              |   4 +-
 pyvisa-py/common.py                | 278 +------------------------------------
 pyvisa-py/gpib.py                  | 258 ++++++++++++++++++++++++++++++++++
 pyvisa-py/highlevel.py             | 115 ++++++---------
 pyvisa-py/protocols/rpc.py         |  75 ++++++----
 pyvisa-py/protocols/usbraw.py      |  89 ++++++++++++
 pyvisa-py/protocols/usbtmc.py      |  28 +---
 pyvisa-py/protocols/usbutil.py     |   7 +-
 pyvisa-py/protocols/vxi11.py       |   4 +-
 pyvisa-py/serial.py                |  77 ++++++----
 pyvisa-py/sessions.py              |  25 ++--
 pyvisa-py/tcpip.py                 | 208 +++++++++++++++++++++++++--
 pyvisa-py/testsuite/test_common.py | 220 -----------------------------
 pyvisa-py/testsuite/test_serial.py | 116 ----------------
 pyvisa-py/usb.py                   | 141 +++++++++++++++----
 setup.py                           |   4 +-
 23 files changed, 881 insertions(+), 832 deletions(-)
 create mode 100644 pyvisa-py/gpib.py
 create mode 100644 pyvisa-py/protocols/usbraw.py
 delete mode 100644 pyvisa-py/testsuite/test_common.py
 delete mode 100644 pyvisa-py/testsuite/test_serial.py

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/pyvisa-py.git



More information about the Python-modules-commits mailing list