On 03/25/2013 08:29 AM, dbv wrote:
In Python 2.7.3, at ln34 the source file tempfile.py states:

from random import Random as _Random

But, Random is a Class.


Have you just tried the following:

   import random
   print dir(random.random)
   print random.__file__

I suspect you have another random.py (or equivalent) in your sys.path



--
DaveA
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to