[issue14423] Getting the starting date of iso week from a week number and a year.

2012-03-27 Thread Esben Agerbæk Black
New submission from Esben Agerbæk Black esbe...@gmail.com: An enhancement request to make available the date of the first iso weekday of any week of any year. -- files: weekdate.py hgrepos: 117 messages: 156913 nosy: Esben.Agerbæk.Black priority: normal severity: normal status: open

[issue14423] Getting the starting date of iso week from a week number and a year.

2012-03-27 Thread Esben Agerbæk Black
Changes by Esben Agerbæk Black esbe...@gmail.com: -- hgrepos: -117 ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue14423 ___ ___ Python-bugs-list

[issue14423] Getting the starting date of iso week from a week number and a year.

2012-03-27 Thread Esben Agerbæk Black
Changes by Esben Agerbæk Black esbe...@gmail.com: Removed file: http://bugs.python.org/file25040/weekdate.py ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue14423

[issue14423] Getting the starting date of iso week from a week number and a year.

2012-03-27 Thread Esben Agerbæk Black
Esben Agerbæk Black esbe...@gmail.com added the comment: I have made a patch as per the Lifecycle of a patch quick guide. (http://docs.python.org/devguide/patch.html#lifecycle-of-a-patch) -- keywords: +patch Added file: http://bugs.python.org/file25048/isodates.patch

[issue14423] Getting the starting date of iso week from a week number and a year.

2012-03-27 Thread Esben Agerbæk Black
Changes by Esben Agerbæk Black esbe...@gmail.com: -- components: +Library (Lib) ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue14423 ___ ___ Python

[issue14423] Getting the starting date of iso week from a week number and a year.

2012-03-28 Thread Esben Agerbæk Black
Esben Agerbæk Black esbe...@gmail.com added the comment: Patch updated with sanity checks. -- Added file: http://bugs.python.org/file25056/isodates.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue14423

[issue14423] Getting the starting date of iso week from a week number and a year.

2012-03-28 Thread Esben Agerbæk Black
Esben Agerbæk Black esbe...@gmail.com added the comment: Patch updated with tests and documentation -- Added file: http://bugs.python.org/file25059/isodates.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue14423

[issue14423] Getting the starting date of iso week from a week number and a year.

2012-03-31 Thread Esben Agerbæk Black
Changes by Esben Agerbæk Black esbe...@gmail.com: Added file: http://bugs.python.org/file25079/isodates.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue14423

[issue14423] Getting the starting date of iso week from a week number and a year.

2012-04-08 Thread Esben Agerbæk Black
Changes by Esben Agerbæk Black esbe...@gmail.com: Added file: http://bugs.python.org/file25157/isodates.patch ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue14423

[issue14423] Getting the starting date of iso week from a week number and a year.

2012-04-10 Thread Esben Agerbæk Black
Esben Agerbæk Black esbe...@gmail.com added the comment: I believe that it is a good solution to have, for lack of a better term; bi-directional features so in my opinion .isocalendar() merits having a constructor that takes an ISO format. Sadly no :-( I looked it over once more and it seems

[issue14423] Getting the starting date of iso week from a week number and a year.

2012-04-10 Thread Esben Agerbæk Black
Esben Agerbæk Black esbe...@gmail.com added the comment: 1) Yes I agree, your solution is somewhat more concise, I have corrected the code accordingly. 2) I get errors for all my test when I build my python and run ./python.exe -m test.datetimetester -j3 I asume this is because I have yet

[issue14423] Getting the starting date of iso week from a week number and a year.

2012-04-19 Thread Esben Agerbæk Black
Esben Agerbæk Black esbe...@gmail.com added the comment: 2) I get errors for all my test when I build my python and run ./python.exe -m test.datetimetester -j3 I asume this is because I have yet to implement the c version in Modules/_datetimemodule.c is this the correct assumption

[issue14423] Getting the starting date of iso week from a week number and a year.

2012-04-22 Thread Esben Agerbæk Black
Esben Agerbæk Black esbe...@gmail.com added the comment: I somehow re-uploaded an old patch, this one contains buggy c-code, but fixes the python implementation. Any pointers to how to get started on the c bi would be greatly appreciated. -- Added file: http://bugs.python.org/file25306