| 18 | |
| 19 | |
| 20 | class ObjectDescriptor(char.GraphicString): |
| 21 | __doc__ = char.GraphicString.__doc__ |
| 22 | |
| 23 | #: Default :py:class:`~pyasn1.type.tag.TagSet` object for |ASN.1| objects |
| 24 | tagSet = char.GraphicString.tagSet.tagImplicitly( |
| 25 | tag.Tag(tag.tagClassUniversal, tag.tagFormatSimple, 7) |
| 26 | ) |
| 27 | |
| 28 | # Optimization for faster codec lookup |
| 29 | typeId = char.GraphicString.getTypeId() |
| 30 | |
| 31 | |
| 32 | class TimeMixIn(object): |
nothing calls this directly
no test coverage detected