<html><head><style type="text/css" media="screen">Body{font-family: Verdana;font-size:.75em;}h4{font-size:.9em;}a{color: #3a62a6;}.digest .toc {margin-bottom: 15px; padding-bottom:8px; border-bottom: 1px solid #ccc;}.digest .tocItem {margin-bottom: 15px;}.tocItem a{color:#000;text-decoration: none;}.tocItem a:hover{color: #3a62a6;text-decoration: underline;}.topic{padding-bottom: 8px;margin-bottom: 20px; border-bottom: 1px solid #ccc;}.topicHeader{margin-bottom:10px;}.topicTitle{font-weight: bold;}.replies p{margin:0;padding:0;}.replies hr{width: 15%;text-align: left;margin: 0 auto 5px 0;border: none 0;border-top: 1px solid #ccc;height: 1px;}.reply{margin-bottom: 6px;padding-bottom: 4px;}.anchorMarker{color: #3a62a6;}.footer{color: gray;}</style></head><body><div class="digest"><p>Hi ironpython,</p><p>Here's your Daily Digest of new issues for project "<a href="http://ironpython.codeplex.com/">IronPython</a>".</p><p>In today's digest:</p><h4>ISSUES</h4><div class="toc"><div class="tocItem"><a href="#toc_issue_1">1. <span class="tocTitle">[New comment] pyc.py&#58; generates exes which fail on using std python libs</span>&nbsp;<span class="anchorMarker">&darr;</span></a></div><div class="tocItem"><a href="#toc_issue_2">2. <span class="tocTitle">[New comment] pyc.py&#58; generates exes which fail on using std python libs</span>&nbsp;<span class="anchorMarker">&darr;</span></a></div><div class="tocItem"><a href="#toc_issue_3">3. <span class="tocTitle">[Status update] 1.1&#58;  IRONPYTHONPATH Environment Variable Ignored When Running Under Limited Account on Windows XP SP2</span>&nbsp;<span class="anchorMarker">&darr;</span></a></div><div class="tocItem"><a href="#toc_issue_4">4. <span class="tocTitle">[New comment] ModuleFinder not finding imports</span>&nbsp;<span class="anchorMarker">&darr;</span></a></div><div class="tocItem"><a href="#toc_issue_5">5. <span class="tocTitle">[New comment] ModuleFinder not finding imports</span>&nbsp;<span class="anchorMarker">&darr;</span></a></div><div class="tocItem"><a href="#toc_issue_6">6. <span class="tocTitle">[New comment] ModuleFinder not finding imports</span>&nbsp;<span class="anchorMarker">&darr;</span></a></div><div class="tocItem"><a href="#toc_issue_7">7. <span class="tocTitle">[New comment] ModuleFinder not finding imports</span>&nbsp;<span class="anchorMarker">&darr;</span></a></div><div class="tocItem"><a href="#toc_issue_8">8. <span class="tocTitle">[New comment] ModuleFinder not finding imports</span>&nbsp;<span class="anchorMarker">&darr;</span></a></div></div><h4>ISSUES</h4><div class="topic"><a name="toc_issue_1"></a><div class="topicHeader"><span class="topicTitle">1. [New comment] pyc.py&#58; generates exes which fail on using std python libs</span> <a href="http://ironpython.codeplex.com/workitem/32420">view online</a></div><p>User ddewaleffe has commented on the issue:</p><p>"I started to look at this last night... Hope to get this done over the week-end.<br />More news soon..."</p></div><div class="topic"><a name="toc_issue_2"></a><div class="topicHeader"><span class="topicTitle">2. [New comment] pyc.py&#58; generates exes which fail on using std python libs</span> <a href="http://ironpython.codeplex.com/workitem/32420">view online</a></div><p>User slide_o_mix has commented on the issue:</p><p>"ModuleFinder won&#39;t work for IronPython as it stands now, so there may need to be another avenue found."</p></div><div class="topic"><a name="toc_issue_3"></a><div class="topicHeader"><span class="topicTitle">3. [Status update] 1.1&#58;  IRONPYTHONPATH Environment Variable Ignored When Running Under Limited Account on Windows XP SP2</span> <a href="http://ironpython.codeplex.com/workitem/18648">view online</a></div><p>User slide_o_mix has updated the issue:</p><p>Status has changed from Active to Closed with the following comment, <br /><br />"I installed Win XP SP2 in a VM and set IRONPYTHONPATH. I was able to import things in a directory in IRONPYTHONPATH with a limited account under 2.7.2.1"</p></div><div class="topic"><a name="toc_issue_4"></a><div class="topicHeader"><span class="topicTitle">4. [New comment] ModuleFinder not finding imports</span> <a href="http://ironpython.codeplex.com/workitem/32371">view online</a></div><p>User slide_o_mix has commented on the issue:</p><p>"The reason this isn&#39;t working is because ModuleFinder is expecting a marshalled code object in Python bytecode form. You can see from the scan_code method, that it actually looks for specific byte codes &#40;import byte codes&#41; to determine what modules to load. Since the code object that is returned from compile&#40;&#41; is not in this form, ModuleFinder fails. This would take some pretty heavy development to implement byte code marshalling of the AST."</p></div><div class="topic"><a name="toc_issue_5"></a><div class="topicHeader"><span class="topicTitle">5. [New comment] ModuleFinder not finding imports</span> <a href="http://ironpython.codeplex.com/workitem/32371">view online</a></div><p>User ned14 has commented on the issue:</p><p>"By &#34;marshalled code object&#34; do you mean I ought to supply a .pyc instead of .py and then it&#39;ll work&#63;<br /><br />I really don&#39;t mind if ModuleFinder isn&#39;t identical to CPython&#39;s. I&#39;m just looking for a viable &#34;compile this to ILR&#34; solution."</p></div><div class="topic"><a name="toc_issue_6"></a><div class="topicHeader"><span class="topicTitle">6. [New comment] ModuleFinder not finding imports</span> <a href="http://ironpython.codeplex.com/workitem/32371">view online</a></div><p>User slide_o_mix has commented on the issue:</p><p>"The &#34;compiled code object&#34; is a CPython bytecode base code object, which IronPython does not support. We&#39;d have to come up with another way of doing this."</p></div><div class="topic"><a name="toc_issue_7"></a><div class="topicHeader"><span class="topicTitle">7. [New comment] ModuleFinder not finding imports</span> <a href="http://ironpython.codeplex.com/workitem/32371">view online</a></div><p>User ned14 has commented on the issue:</p><p>"Perhaps there is a way of asking IronPython to do a module find on its particular marshalled code objects&#63; Or are you saying that there is no presently available way of natively determining imports in IronPython&#63;"</p></div><div class="topic"><a name="toc_issue_8"></a><div class="topicHeader"><span class="topicTitle">8. [New comment] ModuleFinder not finding imports</span> <a href="http://ironpython.codeplex.com/workitem/32371">view online</a></div><p>User slide_o_mix has commented on the issue:</p><p>"There is probably a way to do it, I can&#39;t think of one off the top of my head, but there are smarter people than me around here."</p></div><div class="footer"><p>You are receiving this email because you subscribed to notifications on CodePlex.</p><p>To report a bug, request a feature, or add a comment, visit <a href="http://ironpython.codeplex.com/workitem/list/basic">IronPython Issue Tracker</a>. You can <a href="https://ironpython.codeplex.com/subscriptions/workitem/project/edit">unsubscribe or change your issue notification settings</a> on CodePlex.com.</p></div></div></body></html>