Skip to content

Commit 14bf454

Browse files
Fix indentation in functions.rst example code
1 parent a54c1f4 commit 14bf454

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Doc/library/functions.rst

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1633,12 +1633,12 @@ are always available. They are listed here in alphabetical order.
16331633
Example:
16341634

16351635
.. code-block:: python
1636-
from time import sleep
1637-
# This call performs one write operation, so the newline inside the string
1638-
# does not trigger an immediate flush by itself.
1639-
print("Hello\nWorld")
1640-
sleep(3)
1641-
print("Hi there!")
1636+
from time import sleep
1637+
# This call performs one write operation, so the newline inside the string
1638+
# does not trigger an immediate flush by itself.
1639+
print("Hello\nWorld")
1640+
sleep(3)
1641+
print("Hi there!")
16421642
16431643
.. versionchanged:: 3.3
16441644
Added the *flush* keyword argument.

0 commit comments

Comments
 (0)