Anyway, if we enter this kind of discussion, it is a reliable indication that
the code smells. There is a pythonic way to express the same task:
>>> t.sort()
>>> t
kind regards
Thierry
On ven., juil. 10, 2015 at 2:28 PM, Terry Reedy < tjre...@udel.edu
[tjre...@udel.edu] > wrote:
On 7/10/2015 8
Hi,
No, the value of t is a reference to tje list. So first, (1) the value of
the reference t is recovered, (2) the parenthesis is evaluated, (...) the
whole expression is evaluated.
To evaluate (2), the .sort() call is executed in place with the side effect
of sorting the content of t. t.sort()
Hi,
No, the value of t is a reference to tje list. So first, (1) the value of
the reference t is recovered, (2) the parenthesis is evaluated, (...) the
whole expression is evaluated.
To evaluate (2), the .sort() call is executed in place with the side effect
of sorting the content of t. t.sort()
Hi,
The question is why to you want to create an exe from your python project?
Setuptools is capable to create small .exe launchers in the Scripts dir of
your
python install. These launchers start a python script and use the python
interpreter registered on your platform. That's pretty light a