We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7005cc3 commit 2d66675Copy full SHA for 2d66675
Doc/library/functions.rst
@@ -1624,12 +1624,13 @@ are always available. They are listed here in alphabetical order.
1624
Example:
1625
1626
.. code-block:: python
1627
- from time import sleep
1628
- # This call performs one write operation, so the newline inside the string
1629
- # does not trigger an immediate flush by itself.
1630
- print("Hello\nWorld")
1631
- sleep(3)
1632
- print("Hi there!")
+
+ from time import sleep
+ # This call performs one write operation, so the newline inside the string
+ # does not trigger an immediate flush by itself.
+ print("Hello\nWorld")
+ sleep(3)
1633
+ print("Hi there!")
1634
1635
.. versionchanged:: 3.3
1636
Added the *flush* keyword argument.
0 commit comments