Skip to content

Commit eeb8015

Browse files
Clean up comments in functions.rst
Removed unnecessary comments about string flushing in print.
1 parent 80f9d55 commit eeb8015

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

Doc/library/functions.rst

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1636,17 +1636,13 @@ are always available. They are listed here in alphabetical order.
16361636

16371637
.. code-block:: python
16381638
from time import sleep
1639-
# Whether the default end is a newline ('\\n') or any other character,
1640-
# Python performs a single write operation for the entire string.
1641-
# Therefore, newlines inside the string do not cause mid-string flushing.
16421639
print("Hello\nWorld")
16431640
sleep(3)
16441641
print("Hi there!")
16451642
16461643
.. versionchanged:: 3.3
16471644
Added the *flush* keyword argument.
16481645

1649-
16501646
.. class:: property(fget=None, fset=None, fdel=None, doc=None)
16511647

16521648
Return a property attribute.

0 commit comments

Comments
 (0)