bpo-44640: Improve punctuation consistency in isinstance/issubclass error messages (GH-27144)

Co-authored-by: Łukasz Langa <lukasz@langa.pl>
This commit is contained in:
wyz23x2 2021-09-18 07:10:17 +08:00 committed by GitHub
parent 24dbe30f8d
commit f4813388b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -2608,7 +2608,7 @@ object_isinstance(PyObject *inst, PyObject *cls)
}
else {
if (!check_class(cls,
"isinstance() arg 2 must be a type, a tuple of types or a union"))
"isinstance() arg 2 must be a type, a tuple of types, or a union"))
return -1;
retval = _PyObject_LookupAttrId(inst, &PyId___class__, &icls);
if (icls != NULL) {
@ -2704,7 +2704,7 @@ recursive_issubclass(PyObject *derived, PyObject *cls)
if (!_PyUnion_Check(cls) && !check_class(cls,
"issubclass() arg 2 must be a class,"
" a tuple of classes, or a union.")) {
" a tuple of classes, or a union")) {
return -1;
}