Summary: | FEATURE="candy" does not work, produces an error | ||
---|---|---|---|
Product: | Portage Development | Reporter: | Matthias F. Brandstetter (RETIRED) <haim> |
Component: | Core - Interface (emerge) | Assignee: | Portage team <dev-portage> |
Status: | RESOLVED WORKSFORME | ||
Severity: | normal | ||
Priority: | High | ||
Version: | unspecified | ||
Hardware: | x86 | ||
OS: | Linux | ||
Whiteboard: | |||
Package list: | Runtime testing required: | --- |
Description
Matthias F. Brandstetter (RETIRED)
![]() Your python or glibc is broken, I imagine, >>> import time >>> int(time.time()*100) 109836631708L >>> int(time.time()*1000) 1098366319139L >>> int(time.time()*10000) 10983663207550L >>> int(time.time()*100000) 109836632230545L >>> int(time.time()*1000000) 1098366323999545L >>> int(time.time()*10000000) 10983663255218870L >>> int(time.time()*1000000000000000) 1098366328167949972537344L >>> int(time.time()*10000000000000000000000) 10983663305119491060918141321216L >>> int(time.time()*100000000000000000000000000000000) 109836633407792809837744422184613733990400L so what should I do? update glibc and/or python? Yes. 'and' this bug seems to affect machines with python 2.2.x. indeed, after upgrading to python-2.3.4 I do not get this error anymore. thx alot! |