diff options
-rw-r--r-- | docs/library/utime.rst | 18 |
1 files changed, 5 insertions, 13 deletions
diff --git a/docs/library/utime.rst b/docs/library/utime.rst index 980fefe13b..871f6c678d 100644 --- a/docs/library/utime.rst +++ b/docs/library/utime.rst @@ -55,20 +55,12 @@ Functions which expresses a time as per localtime. It returns an integer which is the number of seconds since Jan 1, 2000. -.. only:: port_unix or port_pyboard or port_esp8266 +.. function:: sleep(seconds) - .. function:: sleep(seconds) - - Sleep for the given number of seconds. Seconds can be a floating-point number to - sleep for a fractional number of seconds. Note that other MicroPython ports may - not accept floating-point argument, for compatibility with them use ``sleep_ms()`` - and ``sleep_us()`` functions. - -.. only:: port_wipy - - .. function:: sleep(seconds) - - Sleep for the given number of seconds. + Sleep for the given number of seconds. Some boards may accept `seconds` as a + floating-point number to sleep for a fractional number of seconds. Note that + other boards may not accept a floating-point argument, for compatibility with + them use ``sleep_ms()`` and ``sleep_us()`` functions. .. function:: sleep_ms(ms) |