H
Helmut Jarausch
Hi,
for tracing purposes I have added some print outs like
print('+++ before calling foo',file=sys.stderr)
x=foo(..)
print('--- after calling foo',
and within 'foo'
print('>>> entering foo ...',file=sys.stderr)
Now, when executing this, I always get
+++ before calling foo
--- after calling foo
When outputting to stderr from C/C++ it's guaranteed that the different
outputs appear in the same order as they have been generated.
Is this guarantee no more valid in Python 3.2 ?
Many thanks for a comment,
Helmut.
(That's a single-threaded application)
for tracing purposes I have added some print outs like
print('+++ before calling foo',file=sys.stderr)
x=foo(..)
print('--- after calling foo',
and within 'foo'
print('>>> entering foo ...',file=sys.stderr)
Now, when executing this, I always get
+++ before calling foo
--- after calling foo
When outputting to stderr from C/C++ it's guaranteed that the different
outputs appear in the same order as they have been generated.
Is this guarantee no more valid in Python 3.2 ?
Many thanks for a comment,
Helmut.
(That's a single-threaded application)