From 6d1c019aefa1af019473ffea7c39741ca73e14af Mon Sep 17 00:00:00 2001 From: Joel Bender Date: Thu, 24 May 2018 23:29:19 -0400 Subject: [PATCH] doc string update --- py25/bacpypes/app.py | 5 ++--- py27/bacpypes/app.py | 5 ++--- py34/bacpypes/app.py | 5 ++--- 3 files changed, 6 insertions(+), 9 deletions(-) diff --git a/py25/bacpypes/app.py b/py25/bacpypes/app.py index 895fada..9be79fb 100755 --- a/py25/bacpypes/app.py +++ b/py25/bacpypes/app.py @@ -166,9 +166,8 @@ class DeviceInfoCache: device_info._cache_keys = (device_info.deviceIdentifier, device_info.address) def acquire(self, key): - """Return the known information about the device. If the key is the - address of an unknown device, build a generic device information record - add put it in the cache.""" + """Return the known information about the device and mark the record + as being used by a segmenation state machine.""" if _debug: DeviceInfoCache._debug("acquire %r", key) if isinstance(key, int): diff --git a/py27/bacpypes/app.py b/py27/bacpypes/app.py index a66dffd..1548a3b 100755 --- a/py27/bacpypes/app.py +++ b/py27/bacpypes/app.py @@ -166,9 +166,8 @@ class DeviceInfoCache: device_info._cache_keys = (device_info.deviceIdentifier, device_info.address) def acquire(self, key): - """Return the known information about the device. If the key is the - address of an unknown device, build a generic device information record - add put it in the cache.""" + """Return the known information about the device and mark the record + as being used by a segmenation state machine.""" if _debug: DeviceInfoCache._debug("acquire %r", key) if isinstance(key, int): diff --git a/py34/bacpypes/app.py b/py34/bacpypes/app.py index a66dffd..1548a3b 100755 --- a/py34/bacpypes/app.py +++ b/py34/bacpypes/app.py @@ -166,9 +166,8 @@ class DeviceInfoCache: device_info._cache_keys = (device_info.deviceIdentifier, device_info.address) def acquire(self, key): - """Return the known information about the device. If the key is the - address of an unknown device, build a generic device information record - add put it in the cache.""" + """Return the known information about the device and mark the record + as being used by a segmenation state machine.""" if _debug: DeviceInfoCache._debug("acquire %r", key) if isinstance(key, int):