Re: [Python-Dev] Fwd: Broken link to download (Mac OS X)

2010-04-24 Thread Michael Foord
On 24/04/2010 22:16, Michael Foord wrote: On 24/04/2010 21:50, David Bolen wrote: Michael Foord writes: Hmmm... looks like a 32 / 64 bit issue, which I believe may be the expected result when trying to build on Snow Leopard (?). I think so - I haven't tried a 64-bit build myself, but there's

Re: [Python-Dev] Fwd: Broken link to download (Mac OS X)

2010-04-24 Thread Michael Foord
On 24/04/2010 21:50, David Bolen wrote: Michael Foord writes: Hmmm... looks like a 32 / 64 bit issue, which I believe may be the expected result when trying to build on Snow Leopard (?). I think so - I haven't tried a 64-bit build myself, but there's a comment in setup.py indicating

Re: [Python-Dev] Fwd: Broken link to download (Mac OS X)

2010-04-24 Thread David Bolen
Michael Foord writes: > Hmmm... looks like a 32 / 64 bit issue, which I believe may be the > expected result when trying to build on Snow Leopard (?). I think so - I haven't tried a 64-bit build myself, but there's a comment in setup.py indicating that none of the Tcl/Tk framework builds support

Re: [Python-Dev] Fwd: Broken link to download (Mac OS X)

2010-04-24 Thread Michael Foord
On 24/04/2010 21:34, David Bolen wrote: Michael Foord writes: 10.6.3 and yes I have Tcl and Tk in /Library/Frameworks. How do I determine which versions they are? You can use "info patchlevel" in tclsh - assuming you're running a tclsh linked to your /Library version (a normal Tcl i

Re: [Python-Dev] Fwd: Broken link to download (Mac OS X)

2010-04-24 Thread David Bolen
Michael Foord writes: > 10.6.3 and yes I have Tcl and Tk in /Library/Frameworks. How do I > determine which versions they are? You can use "info patchlevel" in tclsh - assuming you're running a tclsh linked to your /Library version (a normal Tcl install puts this in /usr/local/bin I think). Or,

Re: [Python-Dev] Fwd: Broken link to download (Mac OS X)

2010-04-24 Thread Michael Foord
On 18/04/2010 15:13, Ronald Oussoren wrote: On 14 Apr, 2010, at 23:37, Michael Foord wrote: On 14/04/2010 23:32, Greg Ewing wrote: Michael Foord wrote: Building Python requires, I believe, the XCode development tools to be installed. Even then, building a full version of Py

Re: [Python-Dev] Inconsistent nesting of scopes in exec(..., locals())

2010-04-24 Thread Nick Coghlan
Joachim B Haga wrote: >> Since changing this would break class definitions, that ain't going to >> happen. Suggestions for how to explain the behaviour more clearly in the >> exec() documentation probably wouldn't hurt though. > > I don't quite see how exec() affects the class definition syntax?