Re: [Pythonmac-SIG] Building python-based Mac app with py2app, creating an installer, generates failing installer

2018-01-02 Thread eric . feigenson
Thanks for your replies. I managed to come up with something that worked! I had to do a couple of things, for those that are interested… I needed to upgrade py2app to version 0.8, which fixed a problem in the version we were using (0.7.3) where file permissions were not preserved when copying f

[Pythonmac-SIG] Building python-based Mac app with py2app, creating an installer, generates failing installer

2017-12-22 Thread eric . feigenson
I hope someone on this list can help… I haven’t been able to find many answers on the web. Environment: Mac OS 10.8 & 10.11, Python 2.7.6, py2app 0.14 I create a Mac application bundle from python, using `py2app`, on Mac OS 10.8. This seems to work fine. I then build an installer package using

[Pythonmac-SIG] XCode 3 and newly installed Python version

2009-05-02 Thread Eric Shain
e Console: *Traceback (most recent call last):* * File "main.py", line 10, in * *import objc* *ImportError: No module named objc* *2009-05-02 10:16:34.369 pyTest[1422:10b] *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: &#

[Pythonmac-SIG] Python interpreter in the Terminal

2007-04-12 Thread Eric Leven
I get odd control characters, and I end up doing a lot of painful cutting and pasting. I don't have this problem in Linux. Both machines are calling python from a tcsh shell. Is there a simple solution? Am I the only one running python from the terminal? Thank

Re: [Pythonmac-SIG] SQLite & python

2006-03-28 Thread Eric G. Barron
On 28 Mar 2006, at 1320, Dan Grassi wrote: > All in all the whole Python database (lack of) mess is ridiculous! I > know that Guido does not feel that databases have any place in python > but I don't get it, why does the "batteries included" not include > database support, databases like MySQL,

Re: [Pythonmac-SIG] framework on Intel

2006-02-27 Thread Eric G. Barron
-90 is plist.read() when it should be f.read(). Since I changed that, everything seems to be working perfectly. Thanks to everyone involved for all their work with this project! Eric ___ Pythonmac-SIG maillist - Pythonmac-SIG@python.org http://mail.

Re: [Pythonmac-SIG] Tkinter problem in a forked

2005-06-05 Thread eric texier
implementation be a better solution if I want to be sure that what ever I am doing can run on linux. Thanks Eric --- Bob Ippolito <[EMAIL PROTECTED]> wrote: > > On Jun 4, 2005, at 8:05 AM, Eric Texier wrote: > > > I am having trouble with running tk in a child process. th

[Pythonmac-SIG] Tkinter problem in a forked

2005-06-04 Thread Eric Texier
hanks, Eric import os, sys from Tkinter import * class receiver: def __init__(self, pipeFromParent): try: print "creating window in receptionist" Tk(className='foork',screenName = None,baseName = None) print "creating window in

[Pythonmac-SIG] mac newbie... Tix . What is wrong?

2005-05-06 Thread Eric Texier
Here is a simple example that works on linux, but not on MacOSX tigger. Thanks Eric > pythonw Python 2.4.1 (#2, Apr 27 2005, 22:11:31) [GCC 3.3 20030304 (Apple Computer, Inc. build 1666)] on darwin Type "help", "copyright", "credits" or "license" for mo

Re: [Pythonmac-SIG] XML handler design

2005-03-24 Thread Eric Nieuwland
n (well, sort of) for the XML handler. --eric ___ Pythonmac-SIG maillist - Pythonmac-SIG@python.org http://mail.python.org/mailman/listinfo/pythonmac-sig

Re: [Pythonmac-SIG] XML handler design

2005-03-24 Thread Eric Nieuwland
parser run in a thread? (Or how can I make the parser non-blocking?) Sorry, dunnoh! --eric ___ Pythonmac-SIG maillist - Pythonmac-SIG@python.org http://mail.python.org/mailman/listinfo/pythonmac-sig

Re: [Pythonmac-SIG] [OT] To upgrade Mac OSX or not?

2005-01-26 Thread Eric
eing for the massive gains that OSX brought. I think if we persist for a bit and things settle down in this Brave New MacWorld swetness and light will return (it ain't so bad now). Eric ___ Pythonmac-SIG maillist - Pythonmac-SIG@python.org http:

Re: [Pythonmac-SIG] The versioning question...

2004-12-27 Thread Eric Nieuwland
hod would be to allow for a __version__.py file in 'spam'. Content of this file is to be determined, but I think it should at least something like __current__ or __version__ to act as the pointer to the current version. --eric __