Re: Next step after pychecker

2005-02-02 Thread System Administrator
Francis> But Skip, I am sure that you can easily find an example by Francis> yourself. For example, replace "+" by a function that does Francis> different things depending on its argument type. Sure. I was thinking of the optimization use of type inferencing, forgetting the subject o

Re: Python Code Auditing Tool

2005-02-02 Thread System Administrator
>> Does anybody know of a tool that can tell me all possible exceptions >> that might occur in each line of code? What I'm hoping to find is >> something like the following: Paul> That is impossible. The parameter to the raise statement is a Paul> class object, which can be

Re: How run valgrind on Python C extensions?

2005-02-02 Thread System Administrator
Chris> I have Python C extensions that are giving me seg faults that I'd Chris> like to run valgrind on. Chris> Can I use valgrind on these through python?? HOW??? Just run Python under valgrind's control. It will automatically take care of it for you. Chris> Is it easy or mus