Re: [Python-Dev] SIGCHECK() in longobject.c

2009年10月21日 03:45:48 -0700

Brett Cannon wrote:
> On Tue, Oct 20, 2009 at 07:57, Mark Dickinson <[email protected]
> <mailto:[email protected]>> 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 | [email protected] | Brisbane, Australia
---------------------------------------------------------------
_______________________________________________
Python-Dev mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com

Reply via email to