summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorelie <elie>2002-07-16 08:34:02 +0000
committerelie <elie>2002-07-16 08:34:02 +0000
commitd9174d8eac740984fefb404f45fb40949a506ed2 (patch)
treec3cf8e1e761456a5e13f2dd7d701d8ca1b2210e5
parent8e01176b99e5850ea33ec4ba38af47d8ff12f2d2 (diff)
downloadpysnmp-d9174d8eac740984fefb404f45fb40949a506ed2.tar.gz
Turned to package version 2.0.5
-rw-r--r--CHANGES14
-rw-r--r--README8
2 files changed, 18 insertions, 4 deletions
diff --git a/CHANGES b/CHANGES
index 4f3dd71..d7439b5 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,17 @@
+Tue Jul 16 12:19:35 MSD 2002
+
+Changes to version 2.0.5
+------------------------
+
+- Bugfix: use long ints in integers decoders of asn1.py to prevent a
+ wrapover on left shift what sometimes decodes to negative in unsigned
+ data types decoders.
+
+- Verify against negative initializers to unsigned data types.
+
+- Split up BER decoders of asn1.INTEGER and asn1.UNSIGNED32 classes,
+ derive asn1.COUNTER64 class from asn1.UNSIGNED32 for clarity.
+
Tue Jun 25 8:34:39 MSD 2002
Changes to version 2.0.4
diff --git a/README b/README
index 7096594..62f4295 100644
--- a/README
+++ b/README
@@ -1,5 +1,5 @@
-SNMP engine for Python, version 2.0.4
+SNMP engine for Python, version 2.0.5
-------------------------------------
This is a Python implementation of SNMP v.1/v.2c engine. It's general
@@ -46,13 +46,13 @@ directory in the following way (assuming your Python distribution
resides under /usr/local/lib/python):
$ cd /usr/local/lib/python/site-packages
-$ tar xvf /tmp/pysnmp-2.0.4.tar
-$ echo pysnmp-2.0.4 > pysnmp.pth
+$ tar xvf /tmp/pysnmp-2.0.5.tar
+$ echo pysnmp-2.0.5 > pysnmp.pth
Alternatively, the $PYTHONPATH environment variable can be updated to
point to your PySNMP package location (assuming your UNIX shell is bash):
-export PYTHONPATH=/home/ilya/src/py/pysnmp-2.0.4:$PYTHONPATH
+export PYTHONPATH=/home/ilya/src/py/pysnmp-2.0.5:$PYTHONPATH
The latter trick is also known to work on Windows.