Skip to content

Commit 0ece9e0

Browse files
Fix indentation in example code block
1 parent 14bf454 commit 0ece9e0

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

Doc/library/functions.rst

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1633,12 +1633,13 @@ 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+
1637+
from time import sleep
1638+
# This call performs one write operation, so the newline inside the string
1639+
# does not trigger an immediate flush by itself.
1640+
print("Hello\nWorld")
1641+
sleep(3)
1642+
print("Hi there!")
16421643
16431644
.. versionchanged:: 3.3
16441645
Added the *flush* keyword argument.

0 commit comments

Comments
 (0)