This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author bskinn
Recipients bskinn, docs@python, gaborjbernat, lukasz.langa
Date 2021-10-06.15:17:42
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1633533462.33.0.541331584308.issue45391@roundup.psfhosted.org>
In-reply-to
Content
Identifiers starting with two uppercase letters returns a HUGE list.

>>> pat2 = re.compile(r"([.][A-Z][A-Z])[^.]*$")

Filtering down by only those that contain.lower() "type":

>>> pprint([obj.name for obj in inv.objects if obj.role == "data" and pat2.search(obj.name) and "type" in obj.name.lower()])

['errno.EPROTOTYPE',
 'locale.LC_CTYPE',
 'sqlite3.PARSE_DECLTYPES',
 'ssl.CHANNEL_BINDING_TYPES',
 'token.TYPE_COMMENT',
 'token.TYPE_IGNORE',
 'typing.TYPE_CHECKING',
 'xml.parsers.expat.XMLParserType']

Of these, only 'xml.parsers.expat.XMLParserType' seems to me a likely problem entry.
History
Date User Action Args
2021-10-06 15:17:42bskinnsetrecipients: + bskinn, docs@python, lukasz.langa, gaborjbernat
2021-10-06 15:17:42bskinnsetmessageid: <1633533462.33.0.541331584308.issue45391@roundup.psfhosted.org>
2021-10-06 15:17:42bskinnlinkissue45391 messages
2021-10-06 15:17:42bskinncreate