gh-91578: error message updated for abstract class by ravi140222 · Pull Request #47246 · python/cpython
hopefully it passes this time.
although it appears like a double negative, maybe there should also be a comma in the middle
maybe one of these would solve these problems,
- In order to instantiate abstract class X, need to implement abstract methods foo, bar
- In order to instantiate abstract class X, need an implementation for abstract methods foo, bar
- To instantiate abstract class X, need an implementation for abstract methods foo, bar
- Can't instantiate abstract class X, as abstract methods foo, bar are not implemented (but it is again double negative)
- Instantiation of abstract class X needs an implementation for abstract methods foo, bar