<br><br><div class="gmail_quote">On Mon, Jun 6, 2011 at 1:08 PM, Chris Weisiger <span dir="ltr">&lt;<a href="mailto:cweisiger@msg.ucsf.edu">cweisiger@msg.ucsf.edu</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
<div class="im">On Mon, Jun 6, 2011 at 9:56 AM, Jeffrey O&#39;Neill <span dir="ltr">&lt;<a href="mailto:jeff.oneill@openstv.org" target="_blank">jeff.oneill@openstv.org</a>&gt;</span> wrote:<br></div><div class="gmail_quote">
<div class="im"><blockquote class="gmail_quote" style="border-left:1px solid rgb(204, 204, 204);margin:0pt 0pt 0pt 0.8ex;padding-left:1ex">
<div><br></div>Hi Ronald,<br><br>Thanks for the suggestions.  I&#39;m not importing GUI code in a thread (and threads are not used in launching the app either) so that is not causing the problem.<br><br>I tried gdb with no-strip and the output is below.  It doesn&#39;t help me any. :(  GDB says it is x86_64-apple-darwin while my app is 32 bit but I don&#39;t know if that matters.<br>

</blockquote></div><div><br>That sounds like it would cause a problem. :) You said you upgraded your Python install; are you sure you got the 32-bit version? If you do<br><br>import platform; print platform.architecture()<br>
<br>
what do you get? <br><br>Does the program work properly when not built as an app?<br></div></div>
</blockquote></div><br>Yes, definitely 32-bit Python:<br><br>$ python<br>Python 2.7.1 (r271:86882M, Nov 30 2010, 09:39:13) <br>[GCC 4.0.1 (Apple Inc. build 5494)] on darwin<br>Type &quot;help&quot;, &quot;copyright&quot;, &quot;credits&quot; or &quot;license&quot; for more information.<br>
&gt;&gt;&gt; import platform; print platform.architecture()<br>(&#39;32bit&#39;, &#39;&#39;)<br><br>My app works fine when run without py2app.<br>