A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from http://mail.python.org/pipermail/python-dev/2009-February/085967.html below:

[Python-Dev] Expression optimizations

[Python-Dev] Expression optimizations [Python-Dev] Expression optimizationsAntoine Pitrou solipsis at pitrou.net
Tue Feb 10 17:56:22 CET 2009
Cesare Di Mauro <cesare.dimauro <at> a-tono.com> writes:
> Could it be applyable to other operations as well? So, if I wrote:
> 
>   c = not(a < b)
> 
> the compiler and/or peephole optimizer can generate bytecodes instructions
which, instead, execute the
> following operation:
> 
>   c = a >= b
> 
> Is it right?

No, it would be a bogus optimization:

>>> a = set([1])
>>> b = set([2])
>>> a < b
False
>>> a >= b
False

Regards

Antoine.


More information about the Python-Dev mailing list

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4