Message49145
| 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:48 | admin | link | issue1368955 messages |
| 2007年08月23日 15:44:48 | admin | create |
|