[issue18206] license url in site.py should always use X.Y.Z form of version number

2013-09-13 Thread py.user
py.user added the comment: Senthil Kumaran changed the pattern from: r'^See (http://www\.python\.org/[^/]+/license.html)$' to: r'^See (http://www\.python\.org/download/releases/[^/]+/license/)$' test doesn't pass [guest@localhost cpython]$ ./python Python 3.4.0a2+ (default, Sep 14 2013,

[issue18206] license url in site.py should always use X.Y.Z form of version number

2013-09-13 Thread py.user
Changes by py.user bugzilla-mail-...@yandex.ru: -- status: closed - pending ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18206 ___ ___

[issue18206] license url in site.py should always use X.Y.Z form of version number

2013-09-13 Thread R. David Murray
R. David Murray added the comment: The test needs to be fixed so that it runs even when the LICENSE file exists. (It is also missing the skip when the network resource is not asserted.) I have a patched test, and a fix for the 3.4 problem, but I can't apply it because the 3.4.0 license file

[issue18206] license url in site.py should always use X.Y.Z form of version number

2013-09-13 Thread py.user
py.user added the comment: R. David Murray wrote: It is also missing the skip when the network resource is not asserted. How it connects, I copied from another python tests. The test was skipped without network connection. support.requires('network') ? the 3.4.0 license file does not yet

[issue18206] license url in site.py should always use X.Y.Z form of version number

2013-09-07 Thread Roundup Robot
Roundup Robot added the comment: New changeset a723adeb1f47 by Senthil Kumaran in branch '3.3': Fix License URL display and add test to check for license url presence. http://hg.python.org/cpython/rev/a723adeb1f47 New changeset 12aaf64feca2 by Senthil Kumaran in branch 'default': merge from 3.3

[issue18206] license url in site.py should always use X.Y.Z form of version number

2013-09-07 Thread Senthil Kumaran
Senthil Kumaran added the comment: Fixed in the 3.3 and 3.4. 3.3 - changeset a723adeb1f47 3.4 - changeset 12aaf64feca2 3.4 - (Fixed a merge conflict) changeset 6ecdf2b3192b -- nosy: +orsenthil resolution: - fixed stage: patch review - committed/rejected status: open - closed

[issue18206] license url in site.py should always use X.Y.Z form of version number

2013-07-03 Thread py.user
Changes by py.user bugzilla-mail-...@yandex.ru: Added file: http://bugs.python.org/file30755/issue18206_test.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18206 ___

[issue18206] license url in site.py should always use X.Y.Z form of version number

2013-06-29 Thread Demian Brecht
Changes by Demian Brecht demianbre...@gmail.com: -- nosy: +dbrecht ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue18206 ___ ___ Python-bugs-list

[issue18206] license url in site.py should always use X.Y.Z form of version number

2013-06-22 Thread R. David Murray
R. David Murray added the comment: It would be nice to add a test (guarded by the network resource) that checks that the generated url in license is not a 404. Would you be interested in tackling that, Berker? -- ___ Python tracker

[issue18206] license url in site.py should always use X.Y.Z form of version number

2013-06-17 Thread Berker Peksag
Changes by Berker Peksag berker.pek...@gmail.com: -- keywords: +patch nosy: +berker.peksag stage: needs patch - patch review Added file: http://bugs.python.org/file30621/issue18206.diff ___ Python tracker rep...@bugs.python.org

[issue18206] license url in site.py should always use X.Y.Z form of version number

2013-06-13 Thread R. David Murray
R. David Murray added the comment: For anyone who wants to work on this: the license URL is printed if only if the license file can't be found. -- keywords: +easy nosy: +r.david.murray stage: - needs patch title: There is no license.html on www.python.org - license url in site.py