[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 track

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

2014-10-18 Thread ppperry
Changes by ppperry : -- nosy: +kbk, roger.serwy, terry.reedy -ppperry ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubsc

[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