[issue22664] IDLE: Standard output and error from multiprocessing vanishes

2014-10-18 Thread ppperry

Changes by ppperry maprea...@olum.org:


--
nosy: +kbk, roger.serwy, terry.reedy -ppperry

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue22664
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue22664] IDLE: Standard output and error from multiprocessing vanishes

2014-10-18 Thread Serhiy Storchaka

Serhiy Storchaka added the comment:

This is a duplicate of issue11820.

--
nosy: +serhiy.storchaka
resolution:  - duplicate
stage:  - resolved
status: open - closed
superseder:  - idle3 shell os.system swallows shell command output

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue22664
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue22664] IDLE: Standard output and error from multiprocessing vanishes

2014-10-17 Thread ppperry

New submission from ppperry:

Note: not sure whether this issue belongs as a behavior or an enhancement

In IDLE:
 def print_a_test_string():
 print test

print_a_test_string()
test
threading.Thread(target=print_a_test_string).start()
test
multiprocessing.Process(target=print_a_test_string).start()
[test is not said]

Running this example in the standard interpreter will print test all three 
times (in current thread, new thread, new process). (Acutally, I got an 
AttributeError and had to work aroung it using functools.partial(print, test))

OS: Windows XP

--
components: IDLE, Library (Lib)
messages: 229611
nosy: ppperry
priority: normal
severity: normal
status: open
title: IDLE: Standard output and error from multiprocessing vanishes
type: behavior
versions: Python 2.7

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue22664
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com