[Pythonmac-SIG] Appscript Installer 1.1a1

2005-06-02 Thread Nick Matsakis
HAS and I are working on a new version of the appscript binary installer. An alpha version of the installer can be found at: http://appscript.ai.mit.edu/appscript-1.1a1.dmg Changes from Appscript Installer 1.0.x include: - Changed installation location to be compatible with 10.4 python

[Pythonmac-SIG] Python Help?

2005-06-02 Thread Matthew S-H
I've tried finding the solution to this problem using Google as well as spending hours fooling around to try to fix the problem.I'm a bit new at programming and decided to take Python as a first language.I know I could easily get around this by doing it a different way, but I wanted to figure out

Re: [Pythonmac-SIG] Python Help?

2005-06-02 Thread Charles Hartman
On Jun 1, 2005, at 10:33 PM, Matthew S-H wrote:##Seperates words with punctuation into 2 seperate words.def puncSep(list):    currentWord = -1    for word in list:        currentWord = currentWord + 1        if word[-1] in punctuation:#            list = list[:currentWord] + [word[0:-1], word[-1]]

Re: [Pythonmac-SIG] Python Help?

2005-06-02 Thread Chris Barker
Charles Hartman wrote: On Jun 1, 2005, at 10:33 PM, Matthew S-H wrote: list[currentWord:currentWord + 1] = [word[:-1], word[-1]] You start with a list of strings, but your code replaces one (or more) of them, not with a different string or two strings, but with a tuple whose

[Pythonmac-SIG] py2app data files

2005-06-02 Thread Charles Moad
py2app-0.2 sticks the data files for matplotlib in /usr/local/ share/share/matplotlib instead of /System/Library/Frameworks/ Python.framework/Versions/2.3/share/matplotlib when running bdist_mpkg then installing the created package. Any clues??? (basemap files go to the wrong place

[Pythonmac-SIG] MacPython addons and Tiger

2005-06-02 Thread Jon Rosebaugh
I recently did an Archive Install from 10.3 to 10.4. Under 10.3 I used the version of python that shipped with the OS, and the MacPython addons. After the upgrade, the IDE didn't work, which wasn't really any great surprise. What _was_ a surprise, however, was that the MacPython site doesn't have

Re: [Pythonmac-SIG] py2app data files

2005-06-02 Thread Robert Kern
Charles Moad wrote: py2app-0.2 sticks the data files for matplotlib in /usr/local/ share/share/matplotlib instead of /System/Library/Frameworks/ Python.framework/Versions/2.3/share/matplotlib when running bdist_mpkg then installing the created package. Any clues??? (basemap files

Re: [Pythonmac-SIG] MacPython addons and Tiger

2005-06-02 Thread Bob Ippolito
On Jun 2, 2005, at 6:48 PM, Jon Rosebaugh wrote: I recently did an Archive Install from 10.3 to 10.4. Under 10.3 I used the version of python that shipped with the OS, and the MacPython addons. After the upgrade, the IDE didn't work, which wasn't really any great surprise. What _was_ a

[Pythonmac-SIG] Spe-OSX package, wxGladeOSX updates; Boa Constructor coming

2005-06-02 Thread Kevin Walzer
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi everyone, I've updated my SPE-OSX package to support Bob's MacPython 2.4.1 package only, as well as wxPython 2.6.1. I'm now also supporting Tiger only. I've seen general improvements in stability with the latest versions of wxPython and Python.

Re: [Pythonmac-SIG] Appscript Installer 1.1a1

2005-06-02 Thread Nick Matsakis
On Thu, 2 Jun 2005, Nick Matsakis wrote: Finally, on the matter of Python 2.4, is there a standard place that the macpython 2.4.1 looks for packages? /Library/Python/2.4/site-packages, perhaps? So, my understanding is that independent framework builds of macpython default to only looking in

Re: [Pythonmac-SIG] Appscript Installer 1.1a1

2005-06-02 Thread Bob Ippolito
On Jun 2, 2005, at 10:02 PM, Nick Matsakis wrote: On Thu, 2 Jun 2005, Nick Matsakis wrote: Finally, on the matter of Python 2.4, is there a standard place that the macpython 2.4.1 looks for packages? /Library/Python/2.4/site- packages, perhaps? So, my understanding is that