diff options
author | Guido van Rossum <guido@python.org> | 2003-04-18 19:51:10 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2003-04-18 19:51:10 (GMT) |
commit | 6869458236f4010dd14622ad74853b888164ca12 (patch) | |
tree | 3ee378ea15caad8986ca8810ba8e06f338098afe /Tools/scripts | |
parent | d7e83a1d5178c546fb2c4d5e7d7d284b8a88aeb6 (diff) | |
download | cpython-6869458236f4010dd14622ad74853b888164ca12.zip cpython-6869458236f4010dd14622ad74853b888164ca12.tar.gz cpython-6869458236f4010dd14622ad74853b888164ca12.tar.bz2 |
Don't double-space the "??? new object ..." messages.
Diffstat (limited to 'Tools/scripts')
-rw-r--r-- | Tools/scripts/combinerefs.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tools/scripts/combinerefs.py b/Tools/scripts/combinerefs.py index edd1a86..5a9d0ea 100644 --- a/Tools/scripts/combinerefs.py +++ b/Tools/scripts/combinerefs.py @@ -106,7 +106,7 @@ def combine(fname): assert m addr, rc, guts = m.groups() # guts is type name here if addr not in addr2rc: - print '??? new object created while tearing down:', line + print '??? new object created while tearing down:', line.rstrip() continue print addr, if rc == addr2rc[addr]: |