[issue34331] Incorrectly pluralized abstract class error message

2019-09-11 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: Thank you for your contribution -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: -Python 3.8 ___ Python tracker

[issue34331] Incorrectly pluralized abstract class error message

2019-09-11 Thread Stéphane Wirtel
Stéphane Wirtel added the comment: New changeset 4a12a178f4a6b9a59d97fecc727f2b6b28dfc85f by Stéphane Wirtel (Daniel Andrade) in branch 'master': bpo-34331: Fix incorrectly pluralized abstract class error message. (GH-8670)

[issue34331] Incorrectly pluralized abstract class error message

2019-08-09 Thread Sanyam Khurana
Sanyam Khurana added the comment: Adding 3.9 to this bug. I've reviewed the PR and it looks good to me. -- nosy: +CuriousLearner versions: +Python 3.9 ___ Python tracker ___

[issue34331] Incorrectly pluralized abstract class error message

2018-08-04 Thread Daniel Andrade Groppe
Change by Daniel Andrade Groppe : -- keywords: +patch pull_requests: +8162 stage: -> patch review ___ Python tracker ___ ___

[issue34331] Incorrectly pluralized abstract class error message

2018-08-03 Thread Eric V. Smith
Eric V. Smith added the comment: Actually, this one is probably easier to fix. In my opinion, #34127 is more important to fix, since it's seen much more often than the message about abstract base classes. I wouldn't necessarily object to fixing this one, I just personally think it's not

[issue34331] Incorrectly pluralized abstract class error message

2018-08-03 Thread ppperry
ppperry added the comment: No, this isn't causing me an actual problem, however the related issue34127 was accepted, and this one should be no harder to fix. -- ___ Python tracker

[issue34331] Incorrectly pluralized abstract class error message

2018-08-03 Thread Eric V. Smith
Eric V. Smith added the comment: I'm not sure the effort and code is justified for a trivial fix to an error message. Is this causing some actual problem? -- nosy: +eric.smith type: -> behavior ___ Python tracker

[issue34331] Incorrectly pluralized abstract class error message

2018-08-03 Thread ppperry
New submission from ppperry : >>> class abstract(abc.ABC): ... @abc.abstractmethod ... def meth(): ... pass ... >>> x() Traceback (most recent call last): File "", line 1, in TypeError: Can't instantiate abstract class x with abstract methods meth Error should be "Can't