Skip to content

Commit e7b2c69

Browse files
Clean up comments in functions.rst
Removed unnecessary comments about string flushing in print.
1 parent 7ee22db commit e7b2c69

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
@@ -1627,17 +1627,13 @@ are always available. They are listed here in alphabetical order.
16271627

16281628
.. code-block:: python
16291629
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.
16331630
print("Hello\nWorld")
16341631
sleep(3)
16351632
print("Hi there!")
16361633
16371634
.. versionchanged:: 3.3
16381635
Added the *flush* keyword argument.
16391636

1640-
16411637
.. class:: property(fget=None, fset=None, fdel=None, doc=None)
16421638

16431639
Return a property attribute.

0 commit comments

Comments
 (0)