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.

classification
Title: missing links beetween strftime()'s...
Type: Stage:
Components: Documentation Versions: Python 2.4
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: georg.brandl, jedie
Priority: normal Keywords:

Created on 2006-03-27 07:03 by jedie, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (4)
msg27894 - (view) Author: Jens Diemer (jedie) Date: 2006-03-27 07:03
Ther are a few strftime():

strftime() (date method)
strftime() (datetime method)
strftime() (in module time)
strftime() (time method)

http://starship.python.net/crew/theller/pyhelp.cgi?keyword=strftime&version=current


But only in time.strftime() is the directives table:
http://docs.python.org/lib/module-time.html#l2h-1955

That's ok, if there is a Link directly to this table,
in the other modules.

I suggest: set Links in the other modules to the
directives table in module time.
msg27895 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2006-03-27 22:14
Logged In: YES 
user_id=849994

All the datetime methods refer to the "section of strftime()
behavior" which is important to know. From there, there is a
link to time.strftime.
msg27896 - (view) Author: Jens Diemer (jedie) Date: 2006-03-28 12:10
Logged In: YES 
user_id=1330780

Yes, there is the comment "See the section on strftime()
behavior." But that helps not much. I find it should be
called in such a way: "See strftime() in module time" or
similarly.

And there are no links! Not in the CHM version and not in
the online version... In the online Version the link should
go to this page:
http://docs.python.org/lib/module-time.html#l2h-1955
msg27897 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2006-03-28 12:49
Logged In: YES 
user_id=849994

Added inter-section links in rev. 43400.
History
Date User Action Args
2022-04-11 14:56:16adminsetgithub: 43095
2006-03-27 07:03:59jediecreate