This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author ianbicking
Recipients
Date 2006-03-07.08:06:58
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Logged In: YES 
user_id=210337

We had some minor problems backporting this to Python 2.3;
this fixed it:

-        uuid = UUID(randrange(1<<32L), randrange(1<<16),
randrange(1<<16),
-                    randrange(1<<8), randrange(1<<8),
randrange(1<<48L))
+        uuid = UUID(randrange(1<<32), randrange(1<<16),
randrange(1<<16),
+                    randrange(1<<8), randrange(1<<8),
randrange(1<<48))

I'm not sure what the most current version looks like, so
this might not be a problem anymore (e.g. if the values get
precalculated)
History
Date User Action Args
2007-08-23 15:44:48adminlinkissue1368955 messages
2007-08-23 15:44:48admincreate