Re: [Pythonmac-SIG] Patch to IDLE

2009-05-19 Thread Kevin Walzer
Ronald Oussoren wrote: File bugs with the Tk-Cocoa developers. I'd consider both the addition of an unwanted help menu and the, yet again, changed way to surpress the default application menu bugs in Tk. We could continue to add more and more workarounds to IDLE, but it might be early enoug

Re: [Pythonmac-SIG] 64-bit wxMac/wxPython?

2009-05-19 Thread Kevin Walzer
David Warde-Farley wrote: Am I correct in assuming there's no way to get 32-bit wxMac to play nice with 64-bit Python? From what i'm reading the Cocoa port is more-or-less dead. No, that's not quite right; wxCocoa is being merged into wxMac and the new branch is called wxOSX. I'm not su

Re: [Pythonmac-SIG] 64-bit wxMac/wxPython?

2009-05-19 Thread David Warde-Farley
Hi Ron, On 19-May-09, at 4:19 PM, Ronald Oussoren wrote: wxMac is build on top of the Carbon framework and hence won't work in 64-bit mode. There is an experimental wxCocoa port as well, that might work in 64-bit mode. Thanks for the quick response. I now recall reading about 64-bit sup

Re: [Pythonmac-SIG] 64-bit wxMac/wxPython?

2009-05-19 Thread Ronald Oussoren
David, On 19 May, 2009, at 21:29, David Warde-Farley wrote: Howdy, I was wondering if anyone has successfully built wxMac/wxPython in 64-bit mode for use with a 64-bit universal (or 4-way universal) Python. So far I've had limited success - even though wxMac has an -- enable-universal fla

[Pythonmac-SIG] 64-bit wxMac/wxPython?

2009-05-19 Thread David Warde-Farley
Howdy, I was wondering if anyone has successfully built wxMac/wxPython in 64- bit mode for use with a 64-bit universal (or 4-way universal) Python. So far I've had limited success - even though wxMac has an --enable- universal flag for configure, I get complaints about multiple arch flags.

Re: [Pythonmac-SIG] Patch to IDLE

2009-05-19 Thread Ronald Oussoren
On 19 May, 2009, at 17:14, Kevin Walzer wrote: Ronald Oussoren wrote: I would have thought that overrideRootMenu is the right location for your change, that function should be called (by setupApp in the same function) by the time everything is set up (PyShell calls setApp just before ope

Re: [Pythonmac-SIG] Patch to IDLE

2009-05-19 Thread Kevin Walzer
Ronald Oussoren wrote: I would have thought that overrideRootMenu is the right location for your change, that function should be called (by setupApp in the same function) by the time everything is set up (PyShell calls setApp just before opening the console window). The IDLE codebase can be

Re: [Pythonmac-SIG] Patch to IDLE

2009-05-19 Thread Ronald Oussoren
On 19 May, 2009, at 3:51, Kevin Walzer wrote: I'm trying to patch IDLE to work better with the Cocoa fork of Tcl/ Tk. With Tk-Cocoa, in order to correctly set up the Apple/ Application menu, you have to call the equivalent of 'self.configure(menu=menubar)' after everything else is set up.