Issue #29078: Add the missing import in datetime.time doc example.
Patch by Dhushyanth Ramasamy.
diff --git a/Doc/library/datetime.rst b/Doc/library/datetime.rst
index 5c4ff38..b8d86e3 100644
--- a/Doc/library/datetime.rst
+++ b/Doc/library/datetime.rst
@@ -1323,7 +1323,7 @@
Example:
- >>> from datetime import time, tzinfo
+ >>> from datetime import time, tzinfo, timedelta
>>> class GMT1(tzinfo):
... def utcoffset(self, dt):
... return timedelta(hours=1)
diff --git a/Misc/ACKS b/Misc/ACKS
index 9cbc230..ee73c54 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -1573,3 +1573,4 @@
Jelle Zijlstra
Gennadiy Zlobin
Peter Åstrand
+Dhushyanth Ramasamy
\ No newline at end of file