<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
</head>
<body bgcolor="#ffffff" text="#000000">
<font size="-1"><font face="Helvetica, Arial, sans-serif">Following the
beta 2 announce, I've check the leap year definition in python.<br>
</font></font>
<blockquote type="cite">(- Python header code does not handle leap year
correctly <a class="moz-txt-link-freetext"
 href="http://liblas.org/ticket/71">http://liblas.org/ticket/71</a>
)</blockquote>
<blockquote type="cite">&nbsp;&nbsp;&nbsp; 48&nbsp;&nbsp;&nbsp; def leap_year(year): <br>
&nbsp;&nbsp;&nbsp;&nbsp; 49&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; if (year % 400) == 0: <br>
&nbsp;&nbsp;&nbsp;&nbsp; 50&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return True <br>
&nbsp;&nbsp;&nbsp;&nbsp; 51&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; elif (year % 100) == 0: <br>
&nbsp;&nbsp;&nbsp;&nbsp; 52&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return True <br>
&nbsp;&nbsp;&nbsp;&nbsp; 53&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; elif (year % 4) == 0: <br>
&nbsp;&nbsp;&nbsp;&nbsp; 54&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return True <br>
&nbsp;&nbsp;&nbsp;&nbsp; 55&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; return False </blockquote>
I think it should be (and according to wikipedia : <a
 href="http://en.wikipedia.org/wiki/Leap_year#Algorithm">http://en.wikipedia.org/wiki/Leap_year#Algorithm</a>)
:<br>
&nbsp;&nbsp;&nbsp;&nbsp; 51&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; elif (year % 100) == 0: <br>
&nbsp;&nbsp;&nbsp;&nbsp; 52&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return <b>False</b><br>
<br>
<br>
Etienne
</body>
</html>