Hi,<br>In section 8.1.7 of python 2.7 docs:<br>  .../python-2.7.1-docs-html/library/datetime.html#strftime-strptime-behavior<br>and in section 7.1.8 in the 3.2 docs:<br><br>There is a table that purportedly tells the behavior of strftime() and strptime().<br>
<br>The entry for month is like:<br><br><tt class="docutils literal"><span class="pre">%m</span></tt>      
Month as a decimal number
[01,12].<br><br>This indicates that strptime will parse 2-digit months and raise an exception<br>if the month string isn&#39;t 2-digit.  <br><br>I think that a note should be added to indicate that strptime()<br>will accept a 1-digit month.<br>
<br>My .02 - thx!<br>G<br><br>