Hi Matt, this patch should do it-<br><br>--- a/Qt/Python/pqPythonDialog.cxx<br>+++ b/Qt/Python/pqPythonDialog.cxx<br>@@ -163,8 +163,8 @@ void pqPythonDialog::runScript(const QStringList&amp; files)<br>     QFile file(files[i]);<br>
     if(file.open(QIODevice::ReadOnly))<br>       {<br>-      this-&gt;Implementation-&gt;Ui.shellWidget-&gt;executeScript(<br>-        file.readAll().data());<br>+      this-&gt;runString(QString(&quot;__file__ = \&quot;%1\&quot;&quot;).arg(files[i]));<br>
+      this-&gt;runString(file.readAll().data());<br>       }<br>     else<br>       {<br><br><br>Due to the extra call to runString(), the paraview python shell will display a new prompt twice.  I&#39;d like to fix that before committing it to paraview.<br>
<br><br>Pat<br><br><div class="gmail_quote">On Wed, Jun 9, 2010 at 10:55 PM,  <span dir="ltr">&lt;<a href="mailto:m.c.wilkins@massey.ac.nz" target="_blank">m.c.wilkins@massey.ac.nz</a>&gt;</span> wrote:<br>

<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><br>
Hi Pat,<br>
<br>
Thank you for your quick response.<br>
<br>
Yes setting the __file__ variable would be great.<br>
<br>
Is there a formal way to do a feature request?  From googling, I see<br>
people have just posted requests to this list.  Is that good enough?<br>
If so, could we please have this has a feature request?<br>
<br>
If it is worth your time, perhaps you could point me to were I should<br>
start looking and perhaps I might be able to figure out how to<br>
implement the feature myself.<br>
<br>
Thank you<br>
<br>
Matt Wilkins<br>
<div><div></div><div><br>
On Wed, Jun 09, 2010 at 10:46:23PM -0400, pat marion wrote:<br>
&gt; I&#39;m afraid there isn&#39;t a way to get the name of the python file that is<br>
&gt; currently executing.  Paraview reads the contents for the file into a string<br>
&gt; and passes the string to the interpreter, so python has no association between<br>
&gt; the string and the file.  As a feature request, I think it would be reasonable<br>
&gt; to have paraview set the __file__ variable to be the name of the file before<br>
&gt; executing it.<br>
&gt;<br>
&gt; Pat<br>
&gt;<br>
&gt; On Wed, Jun 9, 2010 at 5:15 PM, &lt;<a href="mailto:m.c.wilkins@massey.ac.nz" target="_blank">m.c.wilkins@massey.ac.nz</a>&gt; wrote:<br>
&gt;<br>
&gt;<br>
&gt;     Hi,<br>
&gt;<br>
&gt;     I would like to find the location of the currently running python<br>
&gt;     plugin macro.  This is so I can do an import of a library that lives<br>
&gt;     in a directory relative to the directory where all my paraview plugins<br>
&gt;     live.  Is this possible?<br>
&gt;<br>
&gt;     In a normal python programme sys.argv[0] can help me, but ofcourse<br>
&gt;     that just points to the paraview binary in this case.  os.getcwd() is<br>
&gt;     no use.  The info is known to paraview (for instance it is in<br>
&gt;     ~/.config/ParaView/ParaView3.8.0.ini file under the [PythonMacros]<br>
&gt;     section - but I really don&#39;t want to go trolling through that file).<br>
&gt;<br>
&gt;     I have quite a few plugins, and I want to do the correct thing by<br>
&gt;     breaking some of the shared functionality out into a module.<br>
&gt;<br>
&gt;     Thanks for any help<br>
&gt;<br>
&gt;     Matt<br>
&gt;<br>
&gt;     _______________________________________________<br>
&gt;     Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
&gt;<br>
&gt;     Visit other Kitware open-source projects at <a href="http://www.kitware.com/" target="_blank">http://www.kitware.com/</a><br>
&gt;     opensource/opensource.html<br>
&gt;<br>
&gt;     Please keep messages on-topic and check the ParaView Wiki at: http://<br>
&gt;     <a href="http://paraview.org/Wiki/ParaView" target="_blank">paraview.org/Wiki/ParaView</a><br>
&gt;<br>
&gt;     Follow this link to subscribe/unsubscribe:<br>
&gt;     <a href="http://www.paraview.org/mailman/listinfo/paraview" target="_blank">http://www.paraview.org/mailman/listinfo/paraview</a><br>
&gt;<br>
&gt;<br>
</div></div></blockquote></div><br>