Skip to content

Commit

Permalink
Revert "Make the ros2cli output always line buffered (ros2#659)"
Browse files Browse the repository at this point in the history
This reverts commit 0075a71.

Signed-off-by: Tomoya Fujita <Tomoya.Fujita@sony.com>
  • Loading branch information
fujitatomoya committed Aug 14, 2021
1 parent 0075a71 commit b78204e
Showing 1 changed file with 0 additions and 22 deletions.
22 changes: 0 additions & 22 deletions ros2cli/ros2cli/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,7 @@
# limitations under the License.

import argparse
import builtins
import functools
import signal
import sys

from ros2cli.command import add_subparsers_on_demand

Expand All @@ -32,14 +29,6 @@ def main(*, script_name='ros2', argv=None, description=None, extension=None):
description=description,
formatter_class=argparse.RawDescriptionHelpFormatter
)
parser.add_argument(
'--use-python-default-buffering',
action='store_true',
default=False,
help=(
'Do not force line buffering in stdout and instead use the python default buffering, '
'which might be affected by PYTHONUNBUFFERED/-u and depends on whatever stdout is '
'interactive or not'))

# add arguments for command extension(s)
if extension:
Expand All @@ -64,17 +53,6 @@ def main(*, script_name='ros2', argv=None, description=None, extension=None):
# parse the command line arguments
args = parser.parse_args(args=argv)

if not args.use_python_default_buffering:
# Make the output always line buffered.
# TextIoWrapper has a reconfigure() method, call that if available.
# https://docs.python.org/3/library/io.html#io.TextIOWrapper.reconfigure
try:
sys.stdout.reconfigure(line_buffering=True)
except AttributeError:
# if stdout is not a TextIoWrapper instance, or we're using python older than 3.7,
# force line buffering by patching print
builtins.print = functools.partial(print, flush=True)

if extension is None:
# get extension identified by the passed command (if available)
extension = getattr(args, selected_extension_key, None)
Expand Down

0 comments on commit b78204e

Please sign in to comment.