cpython/Doc/library/datetime-inheritance.dot
Stan Ulbrych c6a142f947
Datetime: Tidy up docs (GH-144720)
Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
2026-02-18 14:22:34 +01:00

31 lines
640 B
Text

// Used to generate datetime-inheritance.svg with Graphviz
// (https://graphviz.org/) for the datetime documentation.
digraph {
comment="Generated with datetime-inheritance.dot"
graph [
bgcolor="transparent"
fontnames="svg"
layout="dot"
ranksep=0.5
nodesep=0.5
splines=line
]
node [
fontname="Courier"
fontsize=14.0
shape=box
style=rounded
margin="0.15,0.07"
]
edge [
arrowhead=none
]
object -> tzinfo
object -> timedelta
object -> time
object -> date
tzinfo -> timezone
date -> datetime
}