From: Robert K. <rob...@gm...> - 2006-07-27 15:51:07
|
Gary Ruben wrote: > Should > >>> seed(1) > act the same as > >>> seed(array([1])) > in the random module? No. They use slightly different mechanisms to seed. The integer uses RandomKit's seeding routine. I borrowed Python's mechanism for seeding from an array of integers. Now that it comes up, though, it is probably a good idea to use the same mechanism for both cases. > It generates a traceback with the Windows 1.0b1 binary. Please always copy-and-paste tracebacks when reporting bugs. It works for me with r2881; I'll rebuild with a later version and try again. -- Robert Kern "I have come to believe that the whole world is an enigma, a harmless enigma that is made terrible by our own mad attempt to interpret it as though it had an underlying truth." -- Umberto Eco |