This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author xdegaye
Recipients Alex.Willmer, belopolsky, lemburg, serhiy.storchaka, xdegaye
Date 2016-05-03.20:02:55
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1462305775.4.0.647984349223.issue26929@psf.upfronthosting.co.za>
In-reply-to
Content
root@generic_x86:/data/local/tmp # python
Python 3.6.0a0 (default:f4c6dab59cd8+, May  3 2016, 21:59:47) 
[GCC 4.9 20140827 (prerelease)] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> import datetime
>>> for i in range(1, 10):
...   print(datetime.date(1905, 1, i).strftime('%Y %U %w   %G %V %u'))
... 
1905 01 0   1904 53 7
1905 01 1   1905 01 1
1905 01 2   1905 01 2
1905 01 3   1905 01 3
1905 01 4   1905 01 4
1905 01 5   1905 01 5
1905 01 6   1905 01 6
1905 02 0   1905 01 7
1905 02 1   1905 02 1
>>>
History
Date User Action Args
2016-05-03 20:02:55xdegayesetrecipients: + xdegaye, lemburg, belopolsky, serhiy.storchaka, Alex.Willmer
2016-05-03 20:02:55xdegayesetmessageid: <1462305775.4.0.647984349223.issue26929@psf.upfronthosting.co.za>
2016-05-03 20:02:55xdegayelinkissue26929 messages
2016-05-03 20:02:55xdegayecreate