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 rhettinger
Recipients Ludovic.Gasc, gvanrossum, lukasz.langa, martin.panter, pitrou, rhettinger, scoder, vstinner, yselivanov
Date 2015-04-27.00:07:06
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1430093226.32.0.0835410771941.issue24018@psf.upfronthosting.co.za>
In-reply-to
Content
> Therefore, I think it's important to cover the complete protocol 
> in the Generator ABC. I also think it's helpful to not require
> users to override throw() in a subclass, as they might not need it.

Sorry, but I think you're fighting the fundament nature of what the ABCs are supposed to do and I object to the patch going in as-is.  

Please either 
1) drop the throw() method entirely or
2) make throw an abstractmethod()

If it is an abstractmethod, the user is free to implement a throw() method that raises a NotImplementedError, but at least they will do so consciously rather than having it come-up expectedly.

When I teach engineers how to use the collections ABCs, they rely on the rules:

 * when building a class that inherits from an ABC,
   if you supply the required abstract methods,
   then the mixin method just work.

 * if an object passes the isinstance check, 
   then it is fair game to call any of the listed
   methods an expect it to work.

Until now, those rules were followed by all the ABCs.  I really don't want to break the basic contract of what the ABC is supposed to mean.
History
Date User Action Args
2015-04-27 00:07:06rhettingersetrecipients: + rhettinger, gvanrossum, pitrou, scoder, vstinner, lukasz.langa, Ludovic.Gasc, martin.panter, yselivanov
2015-04-27 00:07:06rhettingersetmessageid: <1430093226.32.0.0835410771941.issue24018@psf.upfronthosting.co.za>
2015-04-27 00:07:06rhettingerlinkissue24018 messages
2015-04-27 00:07:06rhettingercreate