[Pythonmac-SIG] FW: Upgrade python Apple tv (Mac)

2009-04-22 Thread Mikael Andersson
From: bollen...@hotmail.com To: pythonmac-sig@python.org Subject: Upgrade python Apple tv (Mac) Date: Wed, 22 Apr 2009 07:50:16 + Hi, I have python on my Apple tv but the version I'm using is 2.5 and I would like to update to current version 3.0.1 Cheers Mikael Lägg till karta

[Pythonmac-SIG] Upgrade python Apple tv (Mac)

2009-04-22 Thread Mikael Andersson
Hi, I have python on my Apple tv but the version I'm using is 2.5 and I would like to update to current version 3.0.1 Cheers Mikael _ Hitta hetaste singlarna på MSN Dejting! http://dejting.se.msn.com/channel/index.aspx?trackingi

Re: [Pythonmac-SIG] Using getwcd() in a frozen app

2009-04-22 Thread Christopher Barker
NOTE: your reply only went to me, not the list -- you need to "reply all". Smith, Jeff wrote: Thanks...that did the trick. good, it wasn't totally clear to me that that was quite what it did! In case you are interested in the context, we have an automated build system that works across multi

Re: [Pythonmac-SIG] Using getwcd() in a frozen app

2009-04-22 Thread Smith, Jeff
Unfortunately, bbfreeze doesn't even work for simple cases on Mac OS X: Warning: don't know how to handle binary dependencies on this platform (darwin) Jeffery G. Smith MedPlus, A Quest Diagnostics Company | Senior SCM Specialist | 4690 Parkway Drive | Mason, OH 45040 USA | phone +1.513.204.2601

Re: [Pythonmac-SIG] Using getwcd() in a frozen app

2009-04-22 Thread Christopher Barker
Smith, Jeff wrote: Unfortunately, bbfreeze doesn't even work for simple cases on Mac OS X: Warning: don't know how to handle binary dependencies on this platform (darwin) Are you using the development version? I don't know that Mac support has made it to a release version, but it has worked f

[Pythonmac-SIG] Interesting problem with frozen app

2009-04-22 Thread Smith, Jeff
This is only a test case for a larger system. I have created an app that freezes itself. setup.py from setuptools import setup APP = ['freezer.py'] DATA_FILES = [] OPTIONS = {'argv_emulation': True, 'no_chdir': True, 'optimize': True} setup( app=APP, data_files=DATA_FIL