<div dir="ltr"><br><div class="gmail_extra"><br><div class="gmail_quote">On Sat, May 2, 2015 at 8:13 AM, Nikos Alexandris <span dir="ltr"><<a href="mailto:nik@nikosalexandris.net" target="_blank">nik@nikosalexandris.net</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">I just ran<br>
<br>
python -Qwarn -tt -3<br>
<br>
on a custom python script and the first line returned is<br>
<br>
gis.py:801: DeprecationWarning: classic int division<br>
<br>
Is this something that needs to be fixed?<br></blockquote><div><br></div><div>in Python 2 :</div><div><br></div><div>1 / 2</div><div>results in 0, that's 'classic int division'</div><div><br></div><div>in Python 3 it results in 0.5</div><div><br></div><div>so it warns you that you are using 'classic int division' so in Python 3 this will change result. So depending on what you want, either use</div><div><br></div><div>float(1)/2</div><div><br></div><div>or to keep the integer division</div><div><br></div><div>from __future__ import division</div><div><br></div><div>1//2</div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">
<br>
Nikos<br>
_______________________________________________<br>
grass-dev mailing list<br>
<a href="mailto:grass-dev@lists.osgeo.org">grass-dev@lists.osgeo.org</a><br>
<a href="http://lists.osgeo.org/mailman/listinfo/grass-dev" target="_blank">http://lists.osgeo.org/mailman/listinfo/grass-dev</a><br>
</blockquote></div><br></div></div>