Re: [Pythonmac-SIG] extractClasses and NIB 3.0

2008-06-03 Thread Ronald Oussoren
Georg, PyObjCTools.NibClassBuilder does not support NIB files that are created with Interface Builder 3. On the positive side: when you use Xcode 3 to edit your source code Interface Builder will automaticly pick up class definitions in your python code, which takes away a major reason for hav

Re: [Pythonmac-SIG] extractClasses and NIB 3.0

2008-06-03 Thread Ronald Oussoren
Georg, PyObjCTools.NibClassBuilder does not support NIB files that are created with Interface Builder 3. On the positive side: when you use Xcode 3 to edit your source code Interface Builder will automaticly pick up class definitions in your python code, which takes away a major reason for hav

[Pythonmac-SIG] extractClasses and NIB 3.0

2008-06-03 Thread Georg Seifert
Hello, I try to write a plugin to my app using py2app (the app itself is written in ObjectC). My program is targeted for Leopard only so my NIB- Files are version 3.x. it seems, that "NibClassBuilder.extractClasses()" cannot read this NIB files as I get the following when loading the bundl

[Pythonmac-SIG] plugin destroys python?

2008-06-03 Thread Georg Seifert
Hello once again me ;( I have an other problem: My program load some plugins with this code: for(NSString * currPath in bundlePaths) { currBundle = [NSBundle bundleWithPath:currPath]; if(currBundle) { currPr

Re: [Pythonmac-SIG] 64-bit Python?

2008-06-03 Thread Boyd Waters
Interesting! Cool! I should look at the header file in the System Python... I had to patch the Python.h in the standard Python distribution to have the "ifdef 64-bit" conditional code, so that the single header file works with both 32- and 64-bit. NOTE that the patches I used in the modified Mac

Re: [Pythonmac-SIG] Is there still a good reason for separate macpythonand pyobjc mailing lists?

2008-06-03 Thread Jay Freeman (saurik)
Personally, I have no interest in any issues relating to Python that don't have to do with its integration with Objective-C. In fact, until this e-mail I had never heard of the PythonMac list, and now that I have I went and took a look at it and it doesn't seem particularly interesting to me: I

Re: [Pythonmac-SIG] py2app and missed modules

2008-06-03 Thread xld00d
Massimo Di Stefano wrote: > > i'm tring for the first time to use py2app :-) > i need to create a .app > > [snip] > > ImportError: No module named pytz.zoneinfo > > /System/Library/Frameworks/Python.framework/Versions/2.5/Extras/lib/ > python/modulegraph/modulegraph.py(444)load_tail() > ->

Re: [Pythonmac-SIG] 64-bit Python?

2008-06-03 Thread Ronald Oussoren
On 2 Jun, 2008, at 1:32, Boyd Waters wrote: Interesting! Cool! I should look at the header file in the System Python... I had to patch the Python.h in the standard Python distribution to have the "ifdef 64-bit" conditional code, so that the single header file works with both 32- and 64-b

Re: [Pythonmac-SIG] 64-bit Python?

2008-06-03 Thread Boyd Waters
On Jun 3, 2008, at 11:50 PM, Ronald Oussoren wrote: I had to patch the Python.h in the standard Python distribution to have the "ifdef 64-bit" conditional code, so that the single header file works with both 32- and 64-bit. NOTE that the patches I used in the modified MacPorts came from