At best, your various Python installations (in your case, at least
Apple's Python 2.3 and darwinports Python 2.4) will be completely
independent. At worst they'll break each other, but that's a different
story for now:-)
What seems to have happened in your case is that you installed fpconst
an
From the description, it sounds like the following happened:
- Installation of SOAPpy without fpconst failed, because setup.py
imports SOAPpy to fetch the version.
- Installation of SOAPpy without fpconst using DarwinPorts succeeded,
but didn't actually work because fpconst is still missing. A w
On Mon, Jan 10, 2005 at 04:31:13AM -0500, Bob Ippolito wrote:
From the description, it sounds like the following happened:
- Installation of SOAPpy without fpconst failed, because setup.py
imports SOAPpy to fetch the version.
- Installation of SOAPpy without fpconst using DarwinPorts succeeded,
b
Hi all,
Quick update to appscript package posted that fixes a couple dumb
bugs and further enhances built-in help:
http://freespace.virgin.net/hamish.sanderson/appscript.html
BTW, I'd like to start aiming for the 1.0 release, so if anyone has
some time on their hands and would like to look over
I thought this might be of interest here. The PSF owns a license to
VISE. Jack knows the details.
Neal
- Forwarded message from VISE X Notification <[EMAIL PROTECTED]> -
From: VISE X Notification <[EMAIL PROTECTED]>
Subject: MindVision Releases VISE X 1.5 for Mac OS X
Date: 06 Jan 2005
In apple's terminal app I can type:
touch ~/Desktop/foobar
and create an empty file.
How do I go about doing this in Apple's Python2.3 Panther?
___
Pythonmac-SIG maillist - [email protected]
http://mail.python.org/mailman/listinfo/pythonmac-s
On Jan 10, 2005, at 17:13, AdvertisingDept wrote:
In apple's terminal app I can type:
touch ~/Desktop/foobar
and create an empty file.
How do I go about doing this in Apple's Python2.3 Panther?
import os
foobarPath = os.path.expanduser('~/Desktop/foobar')
foobarFile = open(foobarPath, 'w')
# ... wr
On Jan 10, 2005, at 19:33, Neal Norwitz wrote:
I thought this might be of interest here. The PSF owns a license to
VISE. Jack knows the details.
I think that this is only really relevant to Mac OS9. I'm not sure if
Jack plans to make another release for OS9?
-bob
__