From 2457b2bdf44d5219c89a9541bfa67cf97b9d7d5a Mon Sep 17 00:00:00 2001 From: Alec Delaney <89490472+tekktrik@users.noreply.github.com> Date: Tue, 3 May 2022 13:49:00 -0400 Subject: [PATCH] Link to CPython docs for time module --- shared-bindings/time/__init__.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/shared-bindings/time/__init__.c b/shared-bindings/time/__init__.c index 4b090fc34e..980d012c5c 100644 --- a/shared-bindings/time/__init__.c +++ b/shared-bindings/time/__init__.c @@ -40,7 +40,11 @@ //| //| The `time` module is a strict subset of the CPython `cpython:time` module. So, code //| using `time` written in CircuitPython will work in CPython but not necessarily the other -//| way around.""" +//| way around. +//| +//| For more information about the `time` module, see the CPython documentation: +//| https://docs.python.org/3/library/time.html +//| """ //| //| def monotonic() -> float: //| """Returns an always increasing value of time with an unknown reference