Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,7 @@ Doc/c-api/module.rst @ericsnowcurrently
# Dates and times
**/*datetime* @pganssle @abalkin
**/*str*time* @pganssle @abalkin
Doc/library/datetime-* @pganssle
Doc/library/time.rst @pganssle @abalkin
Lib/test/test_time.py @pganssle @abalkin
Modules/timemodule.c @pganssle @abalkin
Expand Down
31 changes: 31 additions & 0 deletions Doc/library/datetime-inheritance.dot
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
// 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
}
84 changes: 84 additions & 0 deletions Doc/library/datetime-inheritance.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Loading