| 173 | |
| 174 | |
| 175 | class UTCTime(char.VisibleString, TimeMixIn): |
| 176 | __doc__ = char.VisibleString.__doc__ |
| 177 | |
| 178 | #: Default :py:class:`~pyasn1.type.tag.TagSet` object for |ASN.1| objects |
| 179 | tagSet = char.VisibleString.tagSet.tagImplicitly( |
| 180 | tag.Tag(tag.tagClassUniversal, tag.tagFormatSimple, 23) |
| 181 | ) |
| 182 | |
| 183 | # Optimization for faster codec lookup |
| 184 | typeId = char.VideotexString.getTypeId() |
| 185 | |
| 186 | _yearsDigits = 2 |
| 187 | _hasSubsecond = False |
| 188 | _optionalMinutes = False |
| 189 | _shortTZ = False |
nothing calls this directly
no test coverage detected