On Feb 22, 5:21 pm, [EMAIL PROTECTED] wrote: > I imported two modules (random and matplotlib), and found that the > functions available to me from the random module depended on the order > in which the imports occured. In particular, if I import random first,
[...] > > >>> import random > >>> from pylab import * Change this --^ lint to "import pylab" and see what happens. Of course, that may force other changes in your script... And remember that "from <module> import *" is never your friend. Regards, -=Dave -- http://mail.python.org/mailman/listinfo/python-list