Re: [Pythonmac-SIG] Permission of package installed by mpkgs...

2006-08-09 Thread Larry Meyn
I mentioned this problem a week ago or so. I'm not sure, but it only seems to be a problem on machines with multiple admin users. Actually, permissions are not set correctly on single user machines, but the issue doesn't immediately cause problems unless you add another user that wants to

Re: [Pythonmac-SIG] Permission of package installed by mpkgs...

2006-08-09 Thread David Warde-Farley
On 9-Aug-06, at 4:29 PM, Christopher Barker wrote: > After installing, "import Image" still didn't work, so we went poking > into /Library.Frameworks,.etc, and found that indeed, the PIL dir > and PIL.pth has been installed in site-packages, but that neither had > read permissions for anyone b

[Pythonmac-SIG] Permission of package installed by mpkgs...

2006-08-09 Thread Christopher Barker
Hi all, I just helped a friend install the PIL mpgk from: http://www.pythonmac.org/packages/py24-fat/ On an OS-X 1-0.4.* Intel Mac. After installing, "import Image" still didn't work, so we went poking into /Library.Frameworks,.etc, and found that indeed, the PIL dir and PIL.pth has been

Re: [Pythonmac-SIG] [pyobjc] FYI: Build error; setuptools egg missing

2006-08-09 Thread Ronald Oussoren
On 9-aug-2006, at 10:23, Bob Ippolito wrote: > > On Aug 9, 2006, at 10:07 AM, Michael Glassford wrote: > >> Bob Ippolito wrote: >>> On Aug 8, 2006, at 2:34 PM, Michael Glassford wrote: I just got the PyObjC trunk from svn. When I try to build it ("$PYTHON setup.py build"), I get th

Re: [Pythonmac-SIG] [pyobjc] FYI: Build error; setuptools egg missing

2006-08-09 Thread Bob Ippolito
On Aug 9, 2006, at 10:07 AM, Michael Glassford wrote: > Bob Ippolito wrote: >> On Aug 8, 2006, at 2:34 PM, Michael Glassford wrote: >>> I just got the PyObjC trunk from svn. When I try to build it >>> ("$PYTHON >>> setup.py build"), I get the error at the end of this message. The >>> specified

Re: [Pythonmac-SIG] [pyobjc] FYI: Build error; setuptools egg missing

2006-08-09 Thread Michael Glassford
Bob Ippolito wrote: > On Aug 8, 2006, at 2:34 PM, Michael Glassford wrote: > >> I just got the PyObjC trunk from svn. When I try to build it ("$PYTHON >> setup.py build"), I get the error at the end of this message. The >> specified url, >> "http://cheeseshop.python.org/packages/2.5/s/setuptools/

Re: [Pythonmac-SIG] appscript with todos in iCal seams very slow

2006-08-09 Thread Marcin Komorowski
Has,Thank you.  Unfortunately, I have a list of UIDs for the todos I want to modify, so I think the best I can do is:for uid in uid_list:    todo = [ t for t in app('iCal').calendars.todos.filter( its.uid == uid ).get() if t != k.MissingValue ][0]    todo.stamp_date.set( datetime.datetime.today() )