summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1997-08-21 02:28:19 (GMT)
committerGuido van Rossum <guido@python.org>1997-08-21 02:28:19 (GMT)
commit5f896a4de06b730df4cd19f48d109fff923bf619 (patch)
treedff0cdfd9e0921e3e9b15332c9075f48532162dd /Python
parent8456161fcd155b0c60f9bdeaa0e706ad9f54b0c8 (diff)
downloadcpython-5f896a4de06b730df4cd19f48d109fff923bf619.zip
cpython-5f896a4de06b730df4cd19f48d109fff923bf619.tar.gz
cpython-5f896a4de06b730df4cd19f48d109fff923bf619.tar.bz2
Added missing newline to warning msg
Diffstat (limited to 'Python')
-rw-r--r--Python/pystate.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/pystate.c b/Python/pystate.c
index 138dc09..bdb456b 100644
--- a/Python/pystate.c
+++ b/Python/pystate.c
@@ -151,7 +151,7 @@ PyThreadState_Clear(tstate)
{
if (tstate->frame != NULL)
fprintf(stderr,
- "PyThreadState_Clear: warning: thread still has a frame");
+ "PyThreadState_Clear: warning: thread still has a frame\n");
ZAP(tstate->frame);