Re: [Pythonmac-SIG] OS X 10.7 Lion, py2app 0.6.3, argv-emulation, wxPython

2011-08-04 Thread Florian Höch
I played around with it, and must say it works really well in my case. I installed the Cocoa wxPython 2.9.2, and after making a few changes to my code, namely not using Close() on dialogs but rather EndModal() and not using icon sizes above 128 (seemingly a wx Cocoa 64-bit bug, the 32-bit and C

Re: [Pythonmac-SIG] Python on iphone for developers

2011-08-04 Thread Bill Janssen
Dan Ross wrote: > So how does one use this to make an iOS app then? That's an exercise for the reader. Basically, you build an Objective-C iOS app, but implement the callbacks and program logic as thin C wrappers that call into Python to get things done. This is simpler with a working PyObjC f

Re: [Pythonmac-SIG] Python on iphone for developers

2011-08-04 Thread Dan Ross
So how does one use this to make an iOS app then? On Thu, 4 Aug 2011 11:58:58 PDT, Bill Janssen wrote: Alex Jouravlev wrote: Is there a port of Python to iPhone? I want to be able to check-out from SVN, edit and run some Python server code now and then. See

Re: [Pythonmac-SIG] Python on iphone for developers

2011-08-04 Thread Bill Janssen
Alex Jouravlev wrote: > Is there a port of Python to iPhone? I want to be able to check-out from > SVN, edit and run some Python server code now and then. See . Bill ___ Pythonmac-S

[Pythonmac-SIG] Python bridgesupport issue on Lion

2011-08-04 Thread luke skywalker
Hi, I have Mac OS X Lion 10.7 running. I'm trying to use bluetooth with python. I've installed the lightblue library as it seems to be the only way to have easy access to bluetooth through python. However, when I do: import lighblueI get this:Traceback (most recent call last): File "", line 1

Re: [Pythonmac-SIG] Pythonmac-SIG Digest, Vol 100, Issue 1

2011-08-04 Thread Andrew Wu
Hi Mike, See if this will help: 1. Grab the latest stable release from the repository via svn: % svn checkout http://svn.red-bean.com/pyobjc/trunk This will locate the source tree in the current directory under a new subdirectory 'trunk' 2. cd into trunk/pyobjc 3. Make a backup copy of 02-dev

[Pythonmac-SIG] Python on iphone for developers

2011-08-04 Thread Alex Jouravlev
Hi, Sorry if misplaced. I am trying to find some information Is there a port of Python to iPhone? I want to be able to check-out from SVN, edit and run some Python server code now and then. I know iOS is a closed ecosystem, however as Developer one can build and install virtually anythi

[Pythonmac-SIG] OS X 10.7 Lion, py2app 0.6.3, argv-emulation, wxPython

2011-08-04 Thread Florian Höch
In 10.7, some functionality of the Carbon libraries is only available in 32-bit mode, but py2app created binaries run in 64-bit mode on Lion. In my case wx and py2app's argv-emulation feature needed Carbon functionality that isn't available in 64-bit mode, so I did work around this by replacing