summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorelie <elie>2013-11-29 21:05:05 +0000
committerelie <elie>2013-11-29 21:05:05 +0000
commitdbfe8ae255f6fee0a7483f14eb6acd3b23a12ef9 (patch)
treed4bc8e459d7aa9d7b4887036e135c3daec8e71d9
parent0174e8f7e54adaebd75bb5dccbe6e069527adf02 (diff)
downloadpyasn1-dbfe8ae255f6fee0a7483f14eb6acd3b23a12ef9.tar.gz
fix to TagSet.repr() to include [obsolete] baseTag information
-rw-r--r--CHANGES2
-rw-r--r--pyasn1/type/tag.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/CHANGES b/CHANGES
index 7cbbb12..83e3c48 100644
--- a/CHANGES
+++ b/CHANGES
@@ -15,7 +15,7 @@ Revision 0.1.8
- Float typed mantissa initializer to REAL type for base 2 added.
- Encoding bases 8 and 16 support for REAL type binary encoder added.
- Fix to REAL type binary decoder to handle different bases and scale factor.
-
+- Fix to TagSet.repr() to include [obsolete] baseTag information.
Revision 0.1.7
--------------
diff --git a/pyasn1/type/tag.py b/pyasn1/type/tag.py
index 1144907..18b6559 100644
--- a/pyasn1/type/tag.py
+++ b/pyasn1/type/tag.py
@@ -66,7 +66,7 @@ class TagSet:
def __repr__(self):
return '%s(%s)' % (
self.__class__.__name__,
- ', '.join([repr(x) for x in self.__superTags])
+ '(), ' + ', '.join([repr(x) for x in self.__superTags])
)
def __add__(self, superTag):