# HG changeset patch # User Paul Boddie # Date 1484953155 -3600 # Node ID 1bd646f3d906f73b31494ca361e2129f45bf2a50 # Parent 8cd93e843b254d0da4704ac522271fb55a71fbf6 Output a trailing space for the non-newline variant of the print statement. diff -r 8cd93e843b25 -r 1bd646f3d906 lib/__builtins__/io.py --- a/lib/__builtins__/io.py Fri Jan 20 23:04:12 2017 +0100 +++ b/lib/__builtins__/io.py Fri Jan 20 23:59:15 2017 +0100 @@ -3,7 +3,7 @@ """ Input/output-related functions. -Copyright (C) 2015, 2016 Paul Boddie +Copyright (C) 2015, 2016, 2017 Paul Boddie This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software @@ -64,5 +64,7 @@ if nl: dest.write("\n") + else: + dest.write(" ") # vim: tabstop=4 expandtab shiftwidth=4