[Python-Dev] SIGCHECK() in longobject.c (original) (raw)
Nick Coghlan ncoghlan at gmail.com
Wed Oct 21 12:27:58 CEST 2009
- Previous message: [Python-Dev] SIGCHECK() in longobject.c
- Next message: [Python-Dev] Python 2.6.4rc2
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Brett Cannon wrote:
On Tue, Oct 20, 2009 at 07:57, Mark Dickinson <dickinsm at gmail.com_ _<mailto:dickinsm at 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 | ncoghlan at gmail.com | Brisbane, Australia
- Previous message: [Python-Dev] SIGCHECK() in longobject.c
- Next message: [Python-Dev] Python 2.6.4rc2
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]