X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c368d904fc27d35ae1e533155e2154dc496432e4..cefae4bc3cac29222757afbd605867b34f421af9:/wxPython/demo/data/echo.py?ds=sidebyside diff --git a/wxPython/demo/data/echo.py b/wxPython/demo/data/echo.py index 46e5fa761e..0b3ea58175 100644 --- a/wxPython/demo/data/echo.py +++ b/wxPython/demo/data/echo.py @@ -19,9 +19,7 @@ line = sys.stdin.readline() while line: line = line[:-1] sys.stdout.write('\nYou typed "%s"\n' % line) - sys.stdout.flush() line = sys.stdin.readline() sys.stdout.write('\nExiting...\n') -sys.stdout.flush()