Re: [Python-Dev] Play with fuzzing

2008-07-06 Thread Martin v. Löwis
> I wrote a fuzzing "framework" called Fusil and this week I wrote a fuzzer for > Python. The idea is quite simple: for a module, > - list all functions, classes and class methods > - call a function with random arguments (of random types) > - instanciate a class with random arguments > - if t

Re: [Python-Dev] Play with fuzzing

2008-07-06 Thread Brett Cannon
On Sun, Jul 6, 2008 at 4:11 PM, Victor Stinner <[EMAIL PROTECTED]> wrote: > Hi, > > I wrote a fuzzing "framework" called Fusil and this week I wrote a fuzzer for > Python. The idea is quite simple: for a module, > - list all functions, classes and class methods > - call a function with random arg

[Python-Dev] Play with fuzzing

2008-07-06 Thread Victor Stinner
Hi, I wrote a fuzzing "framework" called Fusil and this week I wrote a fuzzer for Python. The idea is quite simple: for a module, - list all functions, classes and class methods - call a function with random arguments (of random types) - instanciate a class with random arguments - if the clas