diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2021-09-19 19:11:41 (GMT) |
---|---|---|
committer | Pablo Galindo <pablogsal@gmail.com> | 2021-09-19 19:12:27 (GMT) |
commit | 39c4fe5e2b2ae5ac45c380b0a83e86bac3d7129c (patch) | |
tree | 188dd0521d3b2f2a6bb41b80be51ebf1c327939e | |
parent | d08e4a8c55ae3bd06c2e871265911ee88429b6bb (diff) | |
download | cpython-39c4fe5e2b2ae5ac45c380b0a83e86bac3d7129c.zip cpython-39c4fe5e2b2ae5ac45c380b0a83e86bac3d7129c.tar.gz cpython-39c4fe5e2b2ae5ac45c380b0a83e86bac3d7129c.tar.bz2 |
bpo-44640: Improve punctuation consistency in isinstance/issubclass error messages (GH-27144) (GH-28436)
Co-authored-by: Ćukasz Langa <lukasz@langa.pl>
(cherry picked from commit f4813388b4506b2fafb0089848c5b11cd503758c)
Co-authored-by: wyz23x2 <52805709+wyz23x2@users.noreply.github.com>
Co-authored-by: wyz23x2 <52805709+wyz23x2@users.noreply.github.com>
-rw-r--r-- | Objects/abstract.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Objects/abstract.c b/Objects/abstract.c index 33eb857..c056c66 100644 --- a/Objects/abstract.c +++ b/Objects/abstract.c @@ -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; } |