Izidor Matušov added the comment:
Yes, I need to find out calendar-week-start-day information based on the
current locale.
Or in the other words, I need to find out what the correct parameter for
calendar.Calendar([firstweekday]) object is. With locale en_US it should be
Sunday, with locale
New submission from Izidor Matušov:
There is no way how to figure out the first weekday: Does a week start with
Monday or Saturday? (Or any other day?)
According to documentation, module locale doesn't provide this information.
Module calendar uses European convention (Monday is the
Izidor Matušov added the comment:
After searching at Gentoo's bugzilla, I've found that there is probably problem
in gentoo's libuuid library implementation:
http://bugs.gentoo.org/show_bug.cgi?id=317557
--
___
Python
Izidor Matušov added the comment:
This bug is still present in Gentoo. Find while trying to Steps to reproduce
1, install gentoo (testing on amd64 machine)
2, run commands in python
from gtk import glade
import uuid
uuid.uuid4()
It results in Segmentation fault.
--
nosy: +izidor