Well, just was looking at the pyc.py again; the change you suggest is actually in the GenerateExe method, so should have no effect on what is contained in the .dll. <br><br>The .dll is actually generated by this code:<br><br>

    print &quot;Output:\n\t%s&quot; % output<br>    print &quot;Target:\n\t%s&quot; % target<br>    print &#39;Platform:\n\t%s&#39; % platform<br>    print &#39;Machine:\n\t%s&#39; % machine<br><br>    print &#39;Compiling...&#39;    <br>

    clr.CompileModules(output + &#39;.dll&#39;, mainModule = main_name, *files)<br><br>so I&#39;m getting the feeling that something changed in the CompileModules method between 2.6 and 2.7 such that it&#39;s no longer tracking down and including the std lib references.<br>

Ken<br><br><div class="gmail_quote">On Fri, Oct 8, 2010 at 10:08 AM, Ken MacDonald <span dir="ltr">&lt;<a href="mailto:drken567@gmail.com">drken567@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">

HI Dino,<br>Tried your change, it came up with an error on the statement below:<br>TypeError: EmitCall() takes exactly 3 arguments (1 given)<br><br>Not sure what the other args should be... it did seem to create a new myapp.dll despite the error, but it was the same size (1.2 MB) as the new version 2.7 dll, and was still missing std lib components. I&#39;m not sure that this is valid, considering the error in the EmitCall() noted above.<br>


<br>I did do a primitive analysis of the app to find out which std lib components it references; found roughly 25 of them, and as a test, incorporated the largest 10 or so explicitly in the compile; the size of the resulting dll was about 2.1 MB (much closer to the 2.6 dll version size, 2.9 MB), and was able to run it successfullyagainst a stripped-down std lib where I had removed those 10 files. It seems fairly clear to me that the 2.6 version dll did include the components it required from the std lib.<br>


<br>Starting to look really promising; not quite there yet!<br><font color="#888888">Ken</font><div><div></div><div class="h5"><br><br><div class="gmail_quote">On Thu, Oct 7, 2010 at 8:06 PM, Dino Viehland <span dir="ltr">&lt;<a href="mailto:dinov@microsoft.com" target="_blank">dinov@microsoft.com</a>&gt;</span> wrote:<br>


<blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">





<div link="blue" vlink="purple" lang="EN-US">
<div>
<p class="MsoNormal"><span style="font-size: 11pt; color: rgb(31, 73, 125);">I think these changes came about due to this thread:
<a href="http://www.mail-archive.com/users@lists.ironpython.com/msg08794.html" target="_blank">http://www.mail-archive.com/users@lists.ironpython.com/msg08794.html</a> where there was an issue w/ relative paths and starting an app.</span></p>



<p class="MsoNormal"><span style="font-size: 11pt; color: rgb(31, 73, 125);"> </span></p>
<p class="MsoNormal"><span style="font-size: 11pt; color: rgb(31, 73, 125);">And you may have found the root of the problem but you didn’t quote the code change.  There’s these additional lines:</span></p>
<p class="MsoNormal"><span style="font-size: 11pt; color: rgb(31, 73, 125);"> </span></p>
<p class="MsoNormal">   gen.EmitCall(OpCodes.Call, clr.GetClrType(System.IO.DirectoryInfo).GetMethod(&quot;get_FullName&quot;), ())<br>
   gen.EmitCall(OpCodes.Call, clr.GetClrType(System.Environment).GetMethod(&quot;set_CurrentDirectory&quot;), ())</p>
<p class="MsoNormal"> </p>
<p class="MsoNormal"><span style="font-size: 11pt; color: rgb(31, 73, 125);">which might be causing the problem as we change the CWD before we really kick things off.  Does replacing the set_CurrentDirectory line in pyc.py with:</span></p>



<p class="MsoNormal"><span style="font-size: 11pt; color: rgb(31, 73, 125);"> </span></p>
<p class="MsoNormal">   gen.EmitCall(OpCodes.Pop)</p>
<p class="MsoNormal"> </p>
<p class="MsoNormal"><span style="font-size: 11pt; color: rgb(31, 73, 125);">possibly fix things for you (that’ll make that a NOP but should leave all the other changes in place)?</span></p>
<p class="MsoNormal"><span style="font-size: 11pt; color: rgb(31, 73, 125);"> </span></p>
<div style="border-width: medium medium medium 1.5pt; border-style: none none none solid; border-color: -moz-use-text-color -moz-use-text-color -moz-use-text-color blue; padding: 0in 0in 0in 4pt;">
<div>
<div style="border-width: 1pt medium medium; border-style: solid none none; border-color: rgb(181, 196, 223) -moz-use-text-color -moz-use-text-color; padding: 3pt 0in 0in;">
<p class="MsoNormal"><b><span style="font-size: 10pt;">From:</span></b><span style="font-size: 10pt;"> <a href="mailto:users-bounces@lists.ironpython.com" target="_blank">users-bounces@lists.ironpython.com</a> [mailto:<a href="mailto:users-bounces@lists.ironpython.com" target="_blank">users-bounces@lists.ironpython.com</a>]
<b>On Behalf Of </b>Ken MacDonald<br>
<b>Sent:</b> Wednesday, October 06, 2010 1:26 PM<br>
<b>To:</b> Discussion of IronPython<div><div></div><div><br>
<b>Subject:</b> Re: [IronPython] change in standard library behavior for compiled .exe/.dll???</div></div></span></p>
</div>
</div><div><div></div><div>
<p class="MsoNormal"> </p>
<p class="MsoNormal" style="margin-bottom: 12pt;">As an FYI, the following change was made from the IP 2.6 version of pyc.py to the IP 2.7 version (newer version shown first):<br>
<br>
&lt;     # get the ScriptCode assembly...<br>
&lt;     gen.EmitCall(OpCodes.Call, clr.GetClrType(Assembly).GetMethod(&quot;GetEntryAssembly&quot;), ())<br>
&lt;     gen.EmitCall(OpCodes.Callvirt, clr.GetClrType(Assembly).GetMethod(&quot;get_Location&quot;), ())<br>
---<br>
&gt;     # get the ScriptCode assembly...<br>
&gt;     gen.EmitCall(OpCodes.Call, clr.GetClrType(Assembly).GetMethod(&quot;GetEntryAssembly&quot;), ());<br>
&gt;     gen.EmitCall(OpCodes.Call, clr.GetClrType(Assembly).GetMethod(&quot;get_CodeBase&quot;), ());<br>
&gt;     gen.Emit(OpCodes.Newobj, clr.GetClrType(System.Uri).GetConstructor( (str, ) ));<br>
&gt;     gen.EmitCall(OpCodes.Call, clr.GetClrType(System.Uri).GetMethod(&quot;get_LocalPath&quot;), ());<br>
<br>
Don&#39;t know what these things do at this point, but wondering if the changes have to do with compiling the entire code tree into the application .DLL???<br>
Ken</p>
<div>
<p class="MsoNormal">On Wed, Oct 6, 2010 at 4:04 PM, Ken MacDonald &lt;<a href="mailto:drken567@gmail.com" target="_blank">drken567@gmail.com</a>&gt; wrote:</p>
<p class="MsoNormal" style="margin-bottom: 12pt;">Hi Dino,</p>
<div>
<div>
<p class="MsoNormal">On Wed, Oct 6, 2010 at 2:57 PM, Dino Viehland &lt;<a href="mailto:dinov@microsoft.com" target="_blank">dinov@microsoft.com</a>&gt; wrote:</p>
<div>
<div>
<p class="MsoNormal"><span style="font-size: 11pt; color: rgb(31, 73, 125);">How are you distributing your app?  I’m assuming you’re going to have something like:</span></p>
<p class="MsoNormal"><span style="font-size: 11pt; color: rgb(31, 73, 125);"> </span></p>
<p class="MsoNormal"><span style="font-size: 11pt; color: rgb(31, 73, 125);">MyApp\</span></p>
<p class="MsoNormal" style="text-indent: 0.5in;">
<span style="font-size: 11pt; color: rgb(31, 73, 125);">MyApp.exe</span></p>
<p class="MsoNormal" style="text-indent: 0.5in;">
<span style="font-size: 11pt; color: rgb(31, 73, 125);">MyApp.dll</span></p>
<p class="MsoNormal" style="text-indent: 0.5in;">
<span style="font-size: 11pt; color: rgb(31, 73, 125);">IronPython.dll</span></p>
<p class="MsoNormal" style="text-indent: 0.5in;">
<span style="font-size: 11pt; color: rgb(31, 73, 125);">IronPython.Modules.DLL</span></p>
<p class="MsoNormal" style="text-indent: 0.5in;">
<span style="font-size: 11pt; color: rgb(31, 73, 125);">…</span></p>
<p class="MsoNormal" style="text-indent: 0.5in;">
<span style="font-size: 11pt; color: rgb(31, 73, 125);"> </span></p>
</div>
</div>
</div>
<div>
<p class="MsoNormal">This is exactly how we have been distributing our app up to IP 2.6 with .NET 3.5. We also have another DLL with our resources in it; XAML, icons, image files, but no code per se. We have been distributing it this way to customer systems
 that do NOT have IronPython installed, or any sign of the std. library, or &quot;os.py&quot; specifically, and it&#39;s been working really, really well.<br>
<br>
We&#39;re trying to understand what changed moving to IP 2.7 and .NET 4.0 that we should have to care about distributing the std. library now. The way it was before was quite simple and robust; deliver a small handful of files and it just worked, very easy to keep
 track of. Now instead of distributing 5 files, we suddenly need to distribute 500??? We&#39;ve figured out that it certainly COULD work as described below, but it seems like a giant step backwards on several fronts, including the potential for folks to maliciously
 or accidentally tamper with the std lib. sources and affect the functioning of our app. So, how do we get back to the old/better functionality?<br>
<br>
On a <i>slightly </i>related note, our app imports some package directories in addition, e.g. &quot;import ctypes&quot;. When python encounters a directory import, it looks for __init__.py in the directory, and derives the package import directions from there, as I understand
 it. However, I can&#39;t specify the &quot;ctypes&quot; directory as an argument to the pyc.py compile app; just causes it to croak. If I explicitly specified paths like &quot;lib\ctypes\__init__.py&quot; and the other files in the ctypes subdirectory, it seems like &quot;import ctypes&quot;
 would have no clue that the __init__.py that was compiled in had anything to do with the &quot;ctypes&quot; package, as the path names are presumably irrelevant to the compiler as long as they specify a python file. I&#39;m considering mod&#39;ing pyc.py to be able to incorporate
 a list of std lib modules to compile in: simple enough for the standalone files like &quot;os.py&quot;, but the compile modules don&#39;t seem to be able to grok what to do with a package subdirectory.<br>
<span style="color: rgb(136, 136, 136);">Ken<br>
 </span></p>
</div>
<div>
<div>
<blockquote style="border-width: medium medium medium 1pt; border-style: none none none solid; border-color: -moz-use-text-color -moz-use-text-color -moz-use-text-color rgb(204, 204, 204); padding: 0in 0in 0in 6pt; margin-left: 4.8pt; margin-right: 0in;">



<div>
<div>
<p class="MsoNormal" style="text-indent: 0.5in;">
<span style="font-size: 11pt; color: rgb(31, 73, 125);"> </span></p>
<p class="MsoNormal" style="text-indent: 0.5in;">
<span style="font-size: 11pt; color: rgb(31, 73, 125);"> </span></p>
<p class="MsoNormal"><span style="font-size: 11pt; color: rgb(31, 73, 125);">You should be able to also distribute the standard library and just drop it into a Lib directory next to IronPython.dll:</span></p>
<p class="MsoNormal"><span style="font-size: 11pt; color: rgb(31, 73, 125);">MyApp\</span></p>
<p class="MsoNormal" style="text-indent: 0.5in;">
<span style="font-size: 11pt; color: rgb(31, 73, 125);">MyApp.exe</span></p>
<p class="MsoNormal" style="text-indent: 0.5in;">
<span style="font-size: 11pt; color: rgb(31, 73, 125);">MyApp.dll</span></p>
<p class="MsoNormal" style="text-indent: 0.5in;">
<span style="font-size: 11pt; color: rgb(31, 73, 125);">IronPython.dll</span></p>
<p class="MsoNormal" style="text-indent: 0.5in;">
<span style="font-size: 11pt; color: rgb(31, 73, 125);">IronPython.Modules.DLL</span></p>
<p class="MsoNormal" style="text-indent: 0.5in;">
<span style="font-size: 11pt; color: rgb(31, 73, 125);">…</span></p>
<p class="MsoNormal"><span style="font-size: 11pt; color: rgb(31, 73, 125);">                Lib\</span></p>
<p class="MsoNormal"><span style="font-size: 11pt; color: rgb(31, 73, 125);">                                os.py</span></p>
<p class="MsoNormal"><span style="font-size: 11pt; color: rgb(31, 73, 125);"> </span></p>
<p class="MsoNormal"><span style="font-size: 11pt; color: rgb(31, 73, 125);">That lib dir should be on sys.path at startup and so it should be available for importing.</span></p>
<p class="MsoNormal"><span style="font-size: 11pt; color: rgb(31, 73, 125);"> </span></p>
<div style="border-width: medium medium medium 1.5pt; border-style: none none none solid; padding: 0in 0in 0in 4pt; border-color: -moz-use-text-color -moz-use-text-color -moz-use-text-color blue;">
<div>
<div style="border-width: 1pt medium medium; border-style: solid none none; padding: 3pt 0in 0in; border-color: -moz-use-text-color;">
<p class="MsoNormal"><b><span style="font-size: 10pt;">From:</span></b><span style="font-size: 10pt;">
<a href="mailto:users-bounces@lists.ironpython.com" target="_blank">users-bounces@lists.ironpython.com</a> [mailto:<a href="mailto:users-bounces@lists.ironpython.com" target="_blank">users-bounces@lists.ironpython.com</a>]
<b>On Behalf Of </b>Ken MacDonald<br>
<b>Sent:</b> Wednesday, October 06, 2010 11:42 AM<br>
<b>To:</b> Michael Foord</span></p>
<div>
<p class="MsoNormal"><span style="font-size: 10pt;"><br>
<b>Cc:</b> Discussion of IronPython<br>
<b>Subject:</b> Re: [IronPython] change in standard library behavior for compiled .exe/.dll???</span></p>
</div>
</div>
</div>
<p class="MsoNormal"> </p>
<p class="MsoNormal" style="margin-bottom: 12pt;">Hi Michael,</p>
<div>
<div>
<p class="MsoNormal"><br>
I started out on implementing this, but I am importing maybe a dozen of the std. library modules, which then import others, and so on. It appears that eventually, most of the std modules would have to be imported explicitly (perhaps 400 or so files) which might
 make for a somewhat cumbersome command line, incidentally also about 20K characters too long :-). I&#39;m hoping to find a way to get this to work as well as it did under IP 2.5 / .NET 3.5.<br>
<br>
Noah: what kind of problems are YOU having with pyc.py under 4.0? Maybe one of us can suggest something if we have an understanding of what you&#39;re trying to do.<br>
Ken</p>
</div>
</div>
<div>
<div>
<div>
<p class="MsoNormal">On Wed, Oct 6, 2010 at 7:08 AM, Michael Foord &lt;<a href="mailto:michael@voidspace.org.uk" target="_blank">michael@voidspace.org.uk</a>&gt; wrote:</p>
<div>
<div>
<p class="MsoNormal">On 05/10/2010 22:27, Ken MacDonald wrote:
</p>
<p class="MsoNormal">I&#39;ve been looking at the .exe&#39;s we built - using pyc.py - with IP 2.5/.Net 3.5 and IP2.7 / .NET 4.0. In the 2.7 .exe, it appears that the imports (like &quot;os&quot;) are not being built
 into the .exe/.dll, but instead are required to be imported in source form, e.g. &quot;os.py&quot; must be somewhere on sys.path. In the IP 2.5 .exe&#39;s we had been building, they would run fine on machines without the IP standard library installed at all, in other words,
 with &quot;os.py&quot; not present on the machine at all. We did notice that the .exe in question went from being 2.9 MB in it&#39;s IP 2.5 incarnation, down to 1.2 MB in the IP 2.7 version, and the newer version requires that the source code for the IP standard library
 be on the path. Is this a deliberate change in behavior? We never had to package the standard library source when we sent out .exe&#39;s to customers before</p>
<p class="MsoNormal"> </p>
</div>
<p class="MsoNormal">Hmmm... I&#39;m pretty sure I always had to explicitly compile and bundle the standard library with previous versions of Python. Odd. Anyway, the simple solution is to ensure that you
 add any standard library modules you use to the set you compile and ship.</p>
<div>
<div>
<p class="MsoNormal" style="margin-bottom: 12pt;"><br>
<br>
All the best,<br>
<br>
Michael Foord<br>
<br>
<br>
</p>
<p class="MsoNormal"><br>
&gt;&quot;os&quot; is not an assembly but a Python module from the standard library. You need to ensure &gt;that the Python standard library (or the parts that you use and their dependencies) is on the &gt;path.</p>
<div>
<blockquote style="border-width: medium medium medium 1pt; border-style: none none none solid; padding: 0in 0in 0in 6pt; margin: 5pt 0in 5pt 4.8pt; border-color: -moz-use-text-color -moz-use-text-color -moz-use-text-color rgb(204, 204, 204);">



<div>
<p class="MsoNormal" style="margin-bottom: 12pt;"><br>
All the best,<br>
<br>
Michael Foord<br>
<br>
</p>
<div>
<p class="MsoNormal" style="margin-bottom: 12pt;">and how do I ensure it gets found from my .exe - is there a specific env. variable, or the Windows %PATH% e.v., or something I haven&#39;t AddReference&#39;d to????<br>
Thanks,<br>
Ken</p>
</div>
<pre> </pre>
<pre>_______________________________________________</pre>
<pre>Users mailing list</pre>
<div>
<pre><a href="mailto:Users@lists.ironpython.com" target="_blank">Users@lists.ironpython.com</a></pre>
<pre><a href="http://lists.ironpython.com/listinfo.cgi/users-ironpython.com" target="_blank">http://lists.ironpython.com/listinfo.cgi/users-ironpython.com</a></pre>
</div>
<p class="MsoNormal" style="margin-bottom: 12pt;"><br>
<br>
</p>
<pre>-- </pre>
<pre><a href="http://www.voidspace.org.uk/blog" target="_blank">http://www.voidspace.org.uk/blog</a></pre>
<pre> </pre>
<pre>READ CAREFULLY. By accepting and reading this email you agree,</pre>
<pre>on behalf of your employer, to release me from all obligations</pre>
<pre>and waivers arising from any and all NON-NEGOTIATED agreements,</pre>
<pre>licenses, terms-of-service, shrinkwrap, clickwrap, browsewrap,</pre>
<pre>confidentiality, non-disclosure, non-compete and acceptable use</pre>
<pre>policies (”BOGUS AGREEMENTS”) that I have entered into with your</pre>
<pre>employer, its partners, licensors, agents and assigns, in</pre>
<pre>perpetuity, without prejudice to my ongoing rights and privileges.</pre>
<pre>You further represent that you have the authority to release me</pre>
<pre>from any BOGUS AGREEMENTS on behalf of your employer.</pre>
</div>
</blockquote>
</div>
<p class="MsoNormal"> </p>
<p class="MsoNormal" style="margin-bottom: 12pt;"><br>
<br>
</p>
<pre>-- </pre>
<pre><a href="http://www.voidspace.org.uk/blog" target="_blank">http://www.voidspace.org.uk/blog</a></pre>
<pre> </pre>
<pre>READ CAREFULLY. By accepting and reading this email you agree,</pre>
<pre>on behalf of your employer, to release me from all obligations</pre>
<pre>and waivers arising from any and all NON-NEGOTIATED agreements,</pre>
<pre>licenses, terms-of-service, shrinkwrap, clickwrap, browsewrap,</pre>
<pre>confidentiality, non-disclosure, non-compete and acceptable use</pre>
<pre>policies (”BOGUS AGREEMENTS”) that I have entered into with your</pre>
<pre>employer, its partners, licensors, agents and assigns, in</pre>
<pre>perpetuity, without prejudice to my ongoing rights and privileges.</pre>
<pre>You further represent that you have the authority to release me</pre>
<pre>from any BOGUS AGREEMENTS on behalf of your employer.</pre>
</div>
</div>
</div>
</div>
<p class="MsoNormal"> </p>
</div>
</div>
</div>
</div>
</div>
<p class="MsoNormal" style="margin-bottom: 12pt;"><br>
_______________________________________________<br>
Users mailing list<br>
<a href="mailto:Users@lists.ironpython.com" target="_blank">Users@lists.ironpython.com</a><br>
<a href="http://lists.ironpython.com/listinfo.cgi/users-ironpython.com" target="_blank">http://lists.ironpython.com/listinfo.cgi/users-ironpython.com</a></p>
</blockquote>
</div>
</div>
</div>
<p class="MsoNormal"> </p>
</div>
<p class="MsoNormal"> </p>
</div></div></div>
</div>
</div>

<br>_______________________________________________<br>
Users mailing list<br>
<a href="mailto:Users@lists.ironpython.com" target="_blank">Users@lists.ironpython.com</a><br>
<a href="http://lists.ironpython.com/listinfo.cgi/users-ironpython.com" target="_blank">http://lists.ironpython.com/listinfo.cgi/users-ironpython.com</a><br>
<br></blockquote></div><br>
</div></div></blockquote></div><br>