Re: [Pythonmac-SIG] [Pyobjc-dev] Towards PyObjC 3.0

2014-06-03 Thread Nicholas Cole
On Tue, Jun 3, 2014 at 12:06 PM, Ronald Oussoren wrote: > From what I've seen so far, and that's only a 5 minute glance at the public > documentation, Swift will be a competing product as an easy scripting-like > way to build applications. That's no reason to stop work on PyObjC though, > I'm usi

Re: [Pythonmac-SIG] [Pyobjc-dev] Towards PyObjC 3.0

2014-06-03 Thread Nicholas Cole
Hi Roland, Could we all have an update on development plans? Do you think PyObjC is going to work nicely with OS X 10.10? N. On Mon, Aug 26, 2013 at 12:42 PM, Ronald Oussoren wrote: > > On 4 Jul, 2013, at 17:08, Ronald Oussoren wrote: >> >> My self-imposed dead-line for a 3.0 release is "befo

Re: [Pythonmac-SIG] Problem installing pyobjc

2013-07-30 Thread Nicholas Cole
On Tue, Jul 30, 2013 at 8:54 PM, Ronald Oussoren wrote: > > On 30 Jul, 2013, at 21:28, Nicholas Cole wrote: > > > > > > > > > On Tue, Jul 30, 2013 at 4:02 PM, Ronald Oussoren > wrote: > > > > I'll have to do some more debugging to find out

Re: [Pythonmac-SIG] Problem installing pyobjc

2013-07-30 Thread Nicholas Cole
On Tue, Jul 30, 2013 at 4:02 PM, Ronald Oussoren wrote: > > I'll have to do some more debugging to find out what's going wrong here. > > Could you share some more information about your setup: > > * What is the version of OSX? > > * How was python installed, using an installer on www.python.org or

Re: [Pythonmac-SIG] Problem installing pyobjc

2013-07-30 Thread Nicholas Cole
On Tue, Jul 30, 2013 at 2:38 PM, Ronald Oussoren wrote: > > On 30 Jul, 2013, at 15:09, Nicholas Cole wrote: > > > Dear List, > > > > I am having trouble installing pyobjc. I've tried three things: > > > > # python --version > > Python 2.7.3rc1 &

[Pythonmac-SIG] Problem installing pyobjc

2013-07-30 Thread Nicholas Cole
Dear List, I am having trouble installing pyobjc. I've tried three things: # python --version Python 2.7.3rc1 1. # easy_install --upgrade pyobjc Searching for pyobjc Reading http://pypi.python.org/simple/pyobjc/ Best match: pyobjc 2.5.1 Processing pyobjc-2.5.1-py2.7.egg pyobjc 2.5.1 is already

Re: [Pythonmac-SIG] Status of Python 3.0 for Mac?

2008-12-15 Thread Nicholas Cole
On Sun, Dec 14, 2008 at 4:36 PM, Kevin Walzer wrote: > I'm curious who maintains the Mac builds of Python these days. It's not hard > to build from source, of course, and that's what I do...but the binary > installer is convenient for many people. I want to install 3.0 to experiment with all the

[Pythonmac-SIG] Tk 8.5 and leopard.

2007-12-23 Thread Nicholas Cole
I've just seen that a new version of Tk has been released, and the screenshots suggest that it will blend in much better on the mac platoform. What is going to be the best way of installing the new Tk and a version of python that can use it, without upsetting apple's python install (which I'm using

Re: [Pythonmac-SIG] Fwd: more OS X oddities

2006-04-25 Thread Nicholas Cole
On 4/17/06, Michael Hudson <[EMAIL PROTECTED]> wrote: > > I think this has to do with your terminal emulator more than anything. > Try it in an xterm (if you have x11 installed...). I think you're right that it is to do with the terminal emulation. Results of some quick testing (on Tiger): F1-4

[Pythonmac-SIG] Fwd: more OS X oddities

2006-04-15 Thread Nicholas Cole
rwarded message -- From: Thomas Dickey <[EMAIL PROTECTED]> Date: Apr 15, 2006 8:19 PM Subject: Re: more OS X oddities To: Nicholas Cole <[EMAIL PROTECTED]> Cc: [EMAIL PROTECTED] On Sat, Apr 15, 2006 at 04:20:36PM +0200, Nicholas Cole wrote: > Why does this code give the name of func

Re: [Pythonmac-SIG] resizing terminal and curses

2006-03-19 Thread Nicholas Cole
I'm still trying to investigate this problem with resizing terminals. I've found a method which can reliably determine the size of the terminal on OS X (not completely tested), which is to do the following: struct.unpack('hh', fcntl.ioctl(sys.stdout.fileno(), termios.TIOCGWINSZ, '')) However

[Pythonmac-SIG] os.environ

2006-03-18 Thread Nicholas Cole
I hope that this is not an FAQ, but I can't find an answer on it. I know that Terminal.app is setting the environment variables LINES and COLUMNS (I can see them with the bash "set" command), but os.environ['LINES'] and os.environ['COLUMNS'] don't exist. Why is that? Best, N. __

[Pythonmac-SIG] resizing terminal and curses

2006-03-14 Thread Nicholas Cole
I couldn't find anything in the archives related to this. Using both Apple's python and a build of python2.4.2, there seems to be a bug when using ncurses. curses.newwin() is supposed to give a new window filling the pysical terminal, but if the terminal has been resized this does not seem to hap