Brett Cannon wrote: > On Tue, Oct 20, 2009 at 07:57, Mark Dickinson <dicki...@gmail.com > <mailto:dicki...@gmail.com>> wrote: > The Deccoeff type is very simple, though. It would be easy to create > a pure Python version of it, and then do something like: > > try: > from _decimal import Deccoeff # try to get C version > except ImportError: > from deccoeff import Deccoeff # else use Python fallback code. > > > And this is why you shouldn't have to worry. As long as the tests > exercise both the pure Python and C versions then the other VMs are covered.
We need to worry at least a little bit, as the pure Python version doesn't exist at this point in time. Cheers, Nick. -- Nick Coghlan | ncogh...@gmail.com | Brisbane, Australia --------------------------------------------------------------- _______________________________________________ Python-Dev mailing list Python-Dev@python.org http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com