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 2008年08月18日 21:30 by tebeka, last changed 2022年04月11日 14:56 by admin. This issue is now closed.
| Files | ||||
|---|---|---|---|---|
| File name | Uploaded | Description | Edit | |
| svnout.py | tebeka, 2008年08月18日 21:30 | |||
| Messages (2) | |||
|---|---|---|---|
| msg71385 - (view) | Author: Miki Tebeka (tebeka) * | Date: 2008年08月18日 21:30 | |
The attached script hangs on Ubuntu + Python 2.5.2. When make the limit smaller (like 10) or not redirecting stdout, it works. Running the svn command from shell took about 4sec, I gave up on the script after a minute. I tried it both with svn 1.4.6 and 1.5.1 - no change. |
|||
| msg73547 - (view) | Author: Gregory P. Smith (gregory.p.smith) * (Python committer) | Date: 2008年09月22日 00:48 | |
This is not a subprocess bug. the os's pipe buffer filled up so the process never terminated to be noticed by wait. see: http://docs.python.org/dev/library/subprocess.html#subprocess.Popen.wait use communicate() instead of wait(). |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:56:37 | admin | set | github: 47843 |
| 2008年09月22日 00:48:40 | gregory.p.smith | set | status: open -> closed resolution: not a bug messages: + msg73547 nosy: + gregory.p.smith |
| 2008年08月18日 21:30:27 | tebeka | create | |