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 7ee22db commit e7b2c69Copy full SHA for e7b2c69
Doc/library/functions.rst
@@ -1627,17 +1627,13 @@ are always available. They are listed here in alphabetical order.
1627
1628
.. code-block:: python
1629
from time import sleep
1630
- # Whether the default end is a newline ('\\n') or any other character,
1631
- # Python performs a single write operation for the entire string.
1632
- # Therefore, newlines inside the string do not cause mid-string flushing.
1633
print("Hello\nWorld")
1634
sleep(3)
1635
print("Hi there!")
1636
1637
.. versionchanged:: 3.3
1638
Added the *flush* keyword argument.
1639
1640
-
1641
.. class:: property(fget=None, fset=None, fdel=None, doc=None)
1642
1643
Return a property attribute.
0 commit comments