Re: design question: generator object with other attributes

2007-03-22 Thread Alex Martelli
Alan Isaac <[EMAIL PROTECTED]> wrote: > Essentially I want a generator that I can query about > its characteristics. (E.g., a random number generator > that I want to be able to ask about is distributional > parameters.) > > I am thinking of a class that wraps a generator. > An object of this cl

Re: design question: generator object with other attributes

2007-03-22 Thread James Stroud
Alan Isaac wrote: > Essentially I want a generator that I can query about > its characteristics. (E.g., a random number generator > that I want to be able to ask about is distributional > parameters.) > > I am thinking of a class that wraps a generator. > An object of this class will have a ``nex

Re: design question: generator object with other attributes

2007-03-22 Thread Robert Kern
Alan Isaac wrote: > Essentially I want a generator that I can query about > its characteristics. (E.g., a random number generator > that I want to be able to ask about is distributional > parameters.) > > I am thinking of a class that wraps a generator. > An object of this class will have a ``nex