mirror of
https://github.com/python/cpython.git
synced 2026-04-16 00:31:03 +00:00
32 lines
640 B
Text
32 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
|
||
|
|
}
|