<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=us-ascii">
<meta name="Generator" content="Microsoft Word 12 (filtered medium)">
<style>
<!--
 /* Font Definitions */
 @font-face
        {font-family:"Cambria Math";
        panose-1:2 4 5 3 5 4 6 3 2 4;}
@font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}
@font-face
        {font-family:Tahoma;
        panose-1:2 11 6 4 3 5 4 4 2 4;}
@font-face
        {font-family:Consolas;
        panose-1:2 11 6 9 2 2 4 3 2 4;}
 /* Style Definitions */
 p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0in;
        margin-bottom:.0001pt;
        font-size:12.0pt;
        font-family:"Times New Roman","serif";}
a:link, span.MsoHyperlink
        {mso-style-priority:99;
        color:blue;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {mso-style-priority:99;
        color:purple;
        text-decoration:underline;}
pre
        {mso-style-priority:99;
        mso-style-link:"HTML Preformatted Char";
        margin:0in;
        margin-bottom:.0001pt;
        font-size:10.0pt;
        font-family:"Courier New";}
span.HTMLPreformattedChar
        {mso-style-name:"HTML Preformatted Char";
        mso-style-priority:99;
        mso-style-link:"HTML Preformatted";
        font-family:Consolas;}
span.EmailStyle19
        {mso-style-type:personal-reply;
        font-family:"Calibri","sans-serif";
        color:#1F497D;}
.MsoChpDefault
        {mso-style-type:export-only;}
@page WordSection1
        {size:8.5in 11.0in;
        margin:1.0in 1.0in 1.0in 1.0in;}
div.WordSection1
        {page:WordSection1;}
-->
</style><!--[if gte mso 9]><xml>
 <o:shapedefaults v:ext="edit" spidmax="1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
 <o:shapelayout v:ext="edit">
  <o:idmap v:ext="edit" data="1" />
 </o:shapelayout></xml><![endif]-->
</head>
<body lang="EN-US" link="blue" vlink="purple">
<div class="WordSection1">
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D">I think these changes came about due to this thread:
<a href="http://www.mail-archive.com/users@lists.ironpython.com/msg08794.html">http://www.mail-archive.com/users@lists.ironpython.com/msg08794.html</a> where there was an issue w/ relative paths and starting an app.<o:p></o:p></span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D"><o:p>&nbsp;</o:p></span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D">And you may have found the root of the problem but you didn&#8217;t quote the code change.&nbsp; There&#8217;s these additional lines:<o:p></o:p></span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D"><o:p>&nbsp;</o:p></span></p>
<p class="MsoNormal">&nbsp;&nbsp; gen.EmitCall(OpCodes.Call, clr.GetClrType(System.IO.DirectoryInfo).GetMethod(&quot;get_FullName&quot;), ())<br>
&nbsp;&nbsp;&nbsp;gen.EmitCall(OpCodes.Call, clr.GetClrType(System.Environment).GetMethod(&quot;set_CurrentDirectory&quot;), ())<o:p></o:p></p>
<p class="MsoNormal"><o:p>&nbsp;</o:p></p>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D">which might be causing the problem as we change the CWD before we really kick things off.&nbsp; Does replacing the set_CurrentDirectory line in pyc.py with:<o:p></o:p></span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D"><o:p>&nbsp;</o:p></span></p>
<p class="MsoNormal">&nbsp;&nbsp;&nbsp;gen.EmitCall(OpCodes.Pop)<o:p></o:p></p>
<p class="MsoNormal"><o:p>&nbsp;</o:p></p>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D">possibly fix things for you (that&#8217;ll make that a NOP but should leave all the other changes in place)?</span><o:p></o:p></p>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
color:#1F497D"><o:p>&nbsp;</o:p></span></p>
<div style="border:none;border-left:solid blue 1.5pt;padding:0in 0in 0in 4.0pt">
<div>
<div style="border:none;border-top:solid #B5C4DF 1.0pt;padding:3.0pt 0in 0in 0in">
<p class="MsoNormal"><b><span style="font-size:10.0pt;font-family:&quot;Tahoma&quot;,&quot;sans-serif&quot;">From:</span></b><span style="font-size:10.0pt;font-family:&quot;Tahoma&quot;,&quot;sans-serif&quot;"> users-bounces@lists.ironpython.com [mailto:users-bounces@lists.ironpython.com]
<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<br>
<b>Subject:</b> Re: [IronPython] change in standard library behavior for compiled .exe/.dll???<o:p></o:p></span></p>
</div>
</div>
<p class="MsoNormal"><o:p>&nbsp;</o:p></p>
<p class="MsoNormal" style="margin-bottom:12.0pt">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;&nbsp;&nbsp;&nbsp;&nbsp; # get the ScriptCode assembly...<br>
&lt;&nbsp;&nbsp;&nbsp;&nbsp; gen.EmitCall(OpCodes.Call, clr.GetClrType(Assembly).GetMethod(&quot;GetEntryAssembly&quot;), ())<br>
&lt;&nbsp;&nbsp;&nbsp;&nbsp; gen.EmitCall(OpCodes.Callvirt, clr.GetClrType(Assembly).GetMethod(&quot;get_Location&quot;), ())<br>
---<br>
&gt;&nbsp;&nbsp;&nbsp;&nbsp; # get the ScriptCode assembly...<br>
&gt;&nbsp;&nbsp;&nbsp;&nbsp; gen.EmitCall(OpCodes.Call, clr.GetClrType(Assembly).GetMethod(&quot;GetEntryAssembly&quot;), ());<br>
&gt;&nbsp;&nbsp;&nbsp;&nbsp; gen.EmitCall(OpCodes.Call, clr.GetClrType(Assembly).GetMethod(&quot;get_CodeBase&quot;), ());<br>
&gt;&nbsp;&nbsp;&nbsp;&nbsp; gen.Emit(OpCodes.Newobj, clr.GetClrType(System.Uri).GetConstructor( (str, ) ));<br>
&gt;&nbsp;&nbsp;&nbsp;&nbsp; gen.EmitCall(OpCodes.Call, clr.GetClrType(System.Uri).GetMethod(&quot;get_LocalPath&quot;), ());<br>
<br>
Don'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<o:p></o:p></p>
<div>
<p class="MsoNormal">On Wed, Oct 6, 2010 at 4:04 PM, Ken MacDonald &lt;<a href="mailto:drken567@gmail.com">drken567@gmail.com</a>&gt; wrote:<o:p></o:p></p>
<p class="MsoNormal" style="margin-bottom:12.0pt">Hi Dino,<o:p></o:p></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:<o:p></o:p></p>
<div>
<div>
<p class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto"><span style="font-size:11.0pt;color:#1F497D">How are you distributing your app?&nbsp; I&#8217;m assuming you&#8217;re going to have something like:</span><o:p></o:p></p>
<p class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto"><span style="font-size:11.0pt;color:#1F497D">&nbsp;</span><o:p></o:p></p>
<p class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto"><span style="font-size:11.0pt;color:#1F497D">MyApp\</span><o:p></o:p></p>
<p class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
text-indent:.5in">
<span style="font-size:11.0pt;color:#1F497D">MyApp.exe</span><o:p></o:p></p>
<p class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
text-indent:.5in">
<span style="font-size:11.0pt;color:#1F497D">MyApp.dll</span><o:p></o:p></p>
<p class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
text-indent:.5in">
<span style="font-size:11.0pt;color:#1F497D">IronPython.dll</span><o:p></o:p></p>
<p class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
text-indent:.5in">
<span style="font-size:11.0pt;color:#1F497D">IronPython.Modules.DLL</span><o:p></o:p></p>
<p class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
text-indent:.5in">
<span style="font-size:11.0pt;color:#1F497D">&#8230;</span><o:p></o:p></p>
<p class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
text-indent:.5in">
<span style="font-size:11.0pt;color:#1F497D">&nbsp;</span><o:p></o:p></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's been working really, really well.<br>
<br>
We'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'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'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'm considering mod'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't seem to be able to grok what to do with a package subdirectory.<br>
<span style="color:#888888">Ken<br>
&nbsp;</span><o:p></o:p></p>
</div>
<div>
<div>
<blockquote style="border:none;border-left:solid #CCCCCC 1.0pt;padding:0in 0in 0in 6.0pt;
margin-left:4.8pt;margin-right:0in">
<div>
<div>
<p class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
text-indent:.5in">
<span style="font-size:11.0pt;color:#1F497D">&nbsp;</span><o:p></o:p></p>
<p class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
text-indent:.5in">
<span style="font-size:11.0pt;color:#1F497D">&nbsp;</span><o:p></o:p></p>
<p class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto"><span style="font-size:11.0pt;color:#1F497D">You should be able to also distribute the standard library and just drop it into a Lib directory next to IronPython.dll:</span><o:p></o:p></p>
<p class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto"><span style="font-size:11.0pt;color:#1F497D">MyApp\</span><o:p></o:p></p>
<p class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
text-indent:.5in">
<span style="font-size:11.0pt;color:#1F497D">MyApp.exe</span><o:p></o:p></p>
<p class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
text-indent:.5in">
<span style="font-size:11.0pt;color:#1F497D">MyApp.dll</span><o:p></o:p></p>
<p class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
text-indent:.5in">
<span style="font-size:11.0pt;color:#1F497D">IronPython.dll</span><o:p></o:p></p>
<p class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
text-indent:.5in">
<span style="font-size:11.0pt;color:#1F497D">IronPython.Modules.DLL</span><o:p></o:p></p>
<p class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
text-indent:.5in">
<span style="font-size:11.0pt;color:#1F497D">&#8230;</span><o:p></o:p></p>
<p class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto"><span style="font-size:11.0pt;color:#1F497D">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Lib\</span><o:p></o:p></p>
<p class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto"><span style="font-size:11.0pt;color:#1F497D">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; os.py</span><o:p></o:p></p>
<p class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto"><span style="font-size:11.0pt;color:#1F497D">&nbsp;</span><o:p></o:p></p>
<p class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto"><span style="font-size:11.0pt;color:#1F497D">That lib dir should be on sys.path at startup and so it should be available for importing.</span><o:p></o:p></p>
<p class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto"><span style="font-size:11.0pt;color:#1F497D">&nbsp;</span><o:p></o:p></p>
<div style="border:none;border-left:solid windowtext 1.5pt;padding:0in 0in 0in 4.0pt;
border-color:-moz-use-text-color -moz-use-text-color -moz-use-text-color blue">
<div>
<div style="border:none;border-top:solid windowtext 1.0pt;padding:3.0pt 0in 0in 0in;
border-color:-moz-use-text-color -moz-use-text-color">
<p class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto"><b><span style="font-size:10.0pt">From:</span></b><span style="font-size:10.0pt">
<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<o:p></o:p></span></p>
<div>
<p class="MsoNormal"><span style="font-size:10.0pt"><br>
<b>Cc:</b> Discussion of IronPython<br>
<b>Subject:</b> Re: [IronPython] change in standard library behavior for compiled .exe/.dll???<o:p></o:p></span></p>
</div>
</div>
</div>
<p class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto">&nbsp;<o:p></o:p></p>
<p class="MsoNormal" style="mso-margin-top-alt:auto;margin-bottom:12.0pt">Hi Michael,<o:p></o:p></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'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're trying to do.<br>
Ken<o:p></o:p></p>
</div>
</div>
<div>
<div>
<div>
<p class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto">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:<o:p></o:p></p>
<div>
<div>
<p class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto">On 05/10/2010 22:27, Ken MacDonald wrote:
<o:p></o:p></p>
<p class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto">I've been looking at the .exe'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'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'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's to customers before<o:p></o:p></p>
<p class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto">&nbsp;<o:p></o:p></p>
</div>
<p class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto">Hmmm... I'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.<o:p></o:p></p>
<div>
<div>
<p class="MsoNormal" style="mso-margin-top-alt:auto;margin-bottom:12.0pt"><br>
<br>
All the best,<br>
<br>
Michael Foord<br>
<br>
<br>
<o:p></o:p></p>
<p class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto"><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.<o:p></o:p></p>
<div>
<blockquote style="border:none;border-left:solid windowtext 1.0pt;padding:0in 0in 0in 6.0pt;
margin-left:4.8pt;margin-top:5.0pt;margin-right:0in;margin-bottom:5.0pt;
border-color:-moz-use-text-color -moz-use-text-color -moz-use-text-color rgb(204, 204, 204)">
<div>
<p class="MsoNormal" style="mso-margin-top-alt:auto;margin-bottom:12.0pt"><br>
All the best,<br>
<br>
Michael Foord<br>
<br>
<o:p></o:p></p>
<div>
<p class="MsoNormal" style="mso-margin-top-alt:auto;margin-bottom:12.0pt">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't AddReference'd to????<br>
Thanks,<br>
Ken<o:p></o:p></p>
</div>
<pre>&nbsp;<o:p></o:p></pre>
<pre>_______________________________________________<o:p></o:p></pre>
<pre>Users mailing list<o:p></o:p></pre>
<div>
<pre><a href="mailto:Users@lists.ironpython.com" target="_blank">Users@lists.ironpython.com</a><o:p></o:p></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><o:p></o:p></pre>
</div>
<p class="MsoNormal" style="mso-margin-top-alt:auto;margin-bottom:12.0pt"><br>
<br>
<o:p></o:p></p>
<pre>-- <o:p></o:p></pre>
<pre><a href="http://www.voidspace.org.uk/blog" target="_blank">http://www.voidspace.org.uk/blog</a><o:p></o:p></pre>
<pre>&nbsp;<o:p></o:p></pre>
<pre>READ CAREFULLY. By accepting and reading this email you agree,<o:p></o:p></pre>
<pre>on behalf of your employer, to release me from all obligations<o:p></o:p></pre>
<pre>and waivers arising from any and all NON-NEGOTIATED agreements,<o:p></o:p></pre>
<pre>licenses, terms-of-service, shrinkwrap, clickwrap, browsewrap,<o:p></o:p></pre>
<pre>confidentiality, non-disclosure, non-compete and acceptable use<o:p></o:p></pre>
<pre>policies (&#8221;BOGUS AGREEMENTS&#8221;) that I have entered into with your<o:p></o:p></pre>
<pre>employer, its partners, licensors, agents and assigns, in<o:p></o:p></pre>
<pre>perpetuity, without prejudice to my ongoing rights and privileges.<o:p></o:p></pre>
<pre>You further represent that you have the authority to release me<o:p></o:p></pre>
<pre>from any BOGUS AGREEMENTS on behalf of your employer.<o:p></o:p></pre>
</div>
</blockquote>
</div>
<p class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto">&nbsp;<o:p></o:p></p>
<p class="MsoNormal" style="mso-margin-top-alt:auto;margin-bottom:12.0pt"><br>
<br>
<o:p></o:p></p>
<pre>-- <o:p></o:p></pre>
<pre><a href="http://www.voidspace.org.uk/blog" target="_blank">http://www.voidspace.org.uk/blog</a><o:p></o:p></pre>
<pre>&nbsp;<o:p></o:p></pre>
<pre>READ CAREFULLY. By accepting and reading this email you agree,<o:p></o:p></pre>
<pre>on behalf of your employer, to release me from all obligations<o:p></o:p></pre>
<pre>and waivers arising from any and all NON-NEGOTIATED agreements,<o:p></o:p></pre>
<pre>licenses, terms-of-service, shrinkwrap, clickwrap, browsewrap,<o:p></o:p></pre>
<pre>confidentiality, non-disclosure, non-compete and acceptable use<o:p></o:p></pre>
<pre>policies (&#8221;BOGUS AGREEMENTS&#8221;) that I have entered into with your<o:p></o:p></pre>
<pre>employer, its partners, licensors, agents and assigns, in<o:p></o:p></pre>
<pre>perpetuity, without prejudice to my ongoing rights and privileges.<o:p></o:p></pre>
<pre>You further represent that you have the authority to release me<o:p></o:p></pre>
<pre>from any BOGUS AGREEMENTS on behalf of your employer.<o:p></o:p></pre>
</div>
</div>
</div>
</div>
<p class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto">&nbsp;<o:p></o:p></p>
</div>
</div>
</div>
</div>
</div>
<p class="MsoNormal" style="margin-bottom:12.0pt"><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><o:p></o:p></p>
</blockquote>
</div>
</div>
</div>
<p class="MsoNormal"><o:p>&nbsp;</o:p></p>
</div>
<p class="MsoNormal"><o:p>&nbsp;</o:p></p>
</div>
</div>
</body>
</html>