aboutsummaryrefslogtreecommitdiff
path: root/pyasn1/type/namedtype.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyasn1/type/namedtype.py')
-rw-r--r--pyasn1/type/namedtype.py20
1 files changed, 11 insertions, 9 deletions
diff --git a/pyasn1/type/namedtype.py b/pyasn1/type/namedtype.py
index 71f5f11..cbc1429 100644
--- a/pyasn1/type/namedtype.py
+++ b/pyasn1/type/namedtype.py
@@ -49,9 +49,10 @@ class NamedType(object):
representation = '%s=%r' % (self.name, self.asn1Object)
if self.openType:
- representation += ' openType: %r' % self.openType
+ representation += ', open type %r' % self.openType
- return '<%s object at 0x%x type %s>' % (self.__class__.__name__, id(self), representation)
+ return '<%s object, type %s>' % (
+ self.__class__.__name__, representation)
def __eq__(self, other):
return self.__nameAndType == other
@@ -173,7 +174,8 @@ class NamedTypes(object):
def __repr__(self):
representation = ', '.join(['%r' % x for x in self.__namedTypes])
- return '<%s object at 0x%x types %s>' % (self.__class__.__name__, id(self), representation)
+ return '<%s object, types %s>' % (
+ self.__class__.__name__, representation)
def __eq__(self, other):
return self.__namedTypes == other
@@ -293,7 +295,7 @@ class NamedTypes(object):
Raises
------
- : :class:`~pyasn1.error.PyAsn1Error`
+ ~pyasn1.error.PyAsn1Error
If given position is out of fields range
"""
try:
@@ -317,7 +319,7 @@ class NamedTypes(object):
Raises
------
- : :class:`~pyasn1.error.PyAsn1Error`
+ ~pyasn1.error.PyAsn1Error
If *tagSet* is not present or ASN.1 types are not unique within callee *NamedTypes*
"""
try:
@@ -341,7 +343,7 @@ class NamedTypes(object):
Raises
------
- : :class:`~pyasn1.error.PyAsn1Error`
+ ~pyasn1.error.PyAsn1Error
If given field name is not present in callee *NamedTypes*
"""
try:
@@ -365,7 +367,7 @@ class NamedTypes(object):
Raises
------
- : :class:`~pyasn1.error.PyAsn1Error`
+ ~pyasn1.error.PyAsn1Error
If *name* is not present or not unique within callee *NamedTypes*
"""
try:
@@ -394,7 +396,7 @@ class NamedTypes(object):
Raises
------
- : :class:`~pyasn1.error.PyAsn1Error`
+ ~pyasn1.error.PyAsn1Error
If given position is out of fields range
"""
try:
@@ -426,7 +428,7 @@ class NamedTypes(object):
Raises
------
- : :class:`~pyasn1.error.PyAsn1Error`
+ ~pyasn1.error.PyAsn1Error
If *tagSet* is not present or not unique within callee *NamedTypes*
or *idx* is out of fields range
"""