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 a54c1f4 commit 14bf454Copy full SHA for 14bf454
Doc/library/functions.rst
@@ -1633,12 +1633,12 @@ are always available. They are listed here in alphabetical order.
1633
Example:
1634
1635
.. 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!")
+ 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)
+ print("Hi there!")
1642
1643
.. versionchanged:: 3.3
1644
Added the *flush* keyword argument.
0 commit comments