This issue tracker has been migrated to GitHub ,
and is currently read-only.
For more information,
see the GitHub FAQs in the Python's Developer Guide.
Created on 2014年10月17日 22:25 by ppperry, last changed 2022年04月11日 14:58 by admin. This issue is now closed.
| Messages (2) | |||
|---|---|---|---|
| msg229611 - (view) | Author: (ppperry) | Date: 2014年10月17日 22:25 | |
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 |
|||
| msg229645 - (view) | Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) | Date: 2014年10月18日 17:04 | |
This is a duplicate of issue11820. |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:58:09 | admin | set | github: 66854 |
| 2014年10月18日 17:04:51 | serhiy.storchaka | set | status: open -> closed superseder: idle3 shell os.system swallows shell command output nosy: + serhiy.storchaka messages: + msg229645 resolution: duplicate stage: resolved |
| 2014年10月18日 15:50:58 | ppperry | set | nosy:
+ terry.reedy, kbk, roger.serwy, - ppperry |
| 2014年10月17日 22:25:41 | ppperry | create | |