projects
/
python
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4951782
)
Add useless 'return 1' to prtrace() to shut up VC++.
author
Guido van Rossum
<guido@python.org>
Thu, 4 May 2000 00:55:17 +0000
(
00:55
+0000)
committer
Guido van Rossum
<guido@python.org>
Thu, 4 May 2000 00:55:17 +0000
(
00:55
+0000)
Python/ceval.c
patch
|
blob
|
history
diff --git
a/Python/ceval.c
b/Python/ceval.c
index 1a21ee7b13dde9d85eb6a793ec8e04457085e192..46c3e0024c0a84628c93c3048cc0dd375fe71ac1 100644
(file)
--- a/
Python/ceval.c
+++ b/
Python/ceval.c
@@
-2176,6
+2176,7
@@
prtrace(v, str)
if (PyObject_Print(v, stdout, 0) != 0)
PyErr_Clear(); /* Don't know what else to do */
printf("\n");
+ return 1;
}
#endif