<div dir="ltr"><span style="color:rgb(80,0,80);font-size:12.8px">On Fri, Feb 17, 2017, Steven D'Aprano wrote:<br></span><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><span style="font-size:12.8px">JIT compilation delays *compiling* the code to run-time. This is a</span><br style="font-size:12.8px"><span style="font-size:12.8px">proposal for delaying *running* the code until such time as some other</span><br style="font-size:12.8px"><span style="font-size:12.8px">piece of code actually needs the result.</span></blockquote><div><br>My thought was that if a compiler is capable of determining what needs to be compiled just in time, then an interpreter might be able to determine what expressions need to be evaluated just when their results are actually used.<br><br>So if you had code that looked like:<br><br>>>> log.debug("data: %s", expensive())<br><br>The interpreter could skip evaluating the expensive function if the result is never used. It would only evaluate it "just in time". This would almost certainly require just in time compilation as well, otherwise the byte code that calls the "log.debug" function would be unaware of the byte code that implements the function.<br><br>This is probably a pipe-dream, though; because the interpreter would have to be aware of side effects.<br><br><br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Mon, Feb 20, 2017 at 5:18 AM,  <span dir="ltr"><<a href="mailto:tritium-list@sdamon.com" target="_blank">tritium-list@sdamon.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class=""><br>
<br>
> -----Original Message-----<br>
> From: Python-ideas [mailto:<a href="mailto:python-ideas-bounces%2Btritium-">python-ideas-bounces+<wbr>tritium-</a><br>
> list=<a href="mailto:sdamon.com@python.org">sdamon.com@python.org</a>] On Behalf Of Michel Desmoulin<br>
> Sent: Monday, February 20, 2017 3:30 AM<br>
> To: <a href="mailto:python-ideas@python.org">python-ideas@python.org</a><br>
> Subject: Re: [Python-ideas] Delayed Execution via Keyword<br>
><br>
> I wrote a blog post about this, and someone asked me if it meant<br>
> allowing lazy imports to make optional imports easier.<br>
><br>
> Someting like:<br>
><br>
> lazy import foo<br>
> lazy from foo import bar<br>
><br>
> So now if I don't use the imports, the module is not loaded, which could<br>
> also significantly speed up applications starting time with a lot of<br>
> imports.<br>
<br>
</span>Would that not also make a failure to import an error at the time of<br>
executing the imported piece of code rather than at the place of import?<br>
And how would optional imports work if they are not loaded until use?  Right<br>
now, optional imports are done by wrapping the import statement in a<br>
try/except, would you not need to do that handling everywhere the imported<br>
object is used instead?<br>
<br>
(I haven't been following the entire thread, and I don't know if this is a<br>
forest/tress argument)<br>
<div class="HOEnZb"><div class="h5"><br>
> ______________________________<wbr>_________________<br>
> Python-ideas mailing list<br>
> <a href="mailto:Python-ideas@python.org">Python-ideas@python.org</a><br>
> <a href="https://mail.python.org/mailman/listinfo/python-ideas" rel="noreferrer" target="_blank">https://mail.python.org/<wbr>mailman/listinfo/python-ideas</a><br>
> Code of Conduct: <a href="http://python.org/psf/codeofconduct/" rel="noreferrer" target="_blank">http://python.org/psf/<wbr>codeofconduct/</a><br>
<br>
______________________________<wbr>_________________<br>
Python-ideas mailing list<br>
<a href="mailto:Python-ideas@python.org">Python-ideas@python.org</a><br>
<a href="https://mail.python.org/mailman/listinfo/python-ideas" rel="noreferrer" target="_blank">https://mail.python.org/<wbr>mailman/listinfo/python-ideas</a><br>
Code of Conduct: <a href="http://python.org/psf/codeofconduct/" rel="noreferrer" target="_blank">http://python.org/psf/<wbr>codeofconduct/</a><br>
</div></div></blockquote></div><br></div>