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年06月11日 23:01 by afoo, last changed 2022年04月11日 14:56 by admin. This issue is now closed.
| Files | ||||
|---|---|---|---|---|
| File name | Uploaded | Description | Edit | |
| libsubprocess.diff | humitos, 2008年06月21日 14:49 | Changes in documentation | ||
| Messages (5) | |||
|---|---|---|---|
| msg68032 - (view) | Author: Jan Huelsbergen (afoo) | Date: 2008年06月11日 23:01 | |
the 'from' examples contain non-keyword args after keyword args: pipe = os.popen(cmd, mode='r', bufsize) should be pipe = os.popen(cmd, 'r', bufsize) and pipe = os.popen(cmd, mode='w', bufsize) should be pipe = os.popen(cmd, 'w', bufsize) |
|||
| msg68496 - (view) | Author: Manuel Kaufmann (humitos) * | Date: 2008年06月21日 14:49 | |
I fixed this error, I attach the patch. |
|||
| msg68570 - (view) | Author: Georg Brandl (georg.brandl) * (Python committer) | Date: 2008年06月22日 18:12 | |
Fixed in r64461. Thanks! |
|||
| msg68572 - (view) | Author: Manuel Kaufmann (humitos) * | Date: 2008年06月22日 18:57 | |
This bug was reported on Python 2.5 version and was applied on 2.6 branch. That's correct? |
|||
| msg68574 - (view) | Author: Georg Brandl (georg.brandl) * (Python committer) | Date: 2008年06月22日 19:04 | |
I don't maintain the 2.5 docs anymore, at least for such minor bugs. |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:56:35 | admin | set | github: 47335 |
| 2008年06月23日 00:19:37 | benjamin.peterson | set | status: open -> closed |
| 2008年06月22日 19:04:08 | georg.brandl | set | messages: + msg68574 |
| 2008年06月22日 18:57:34 | humitos | set | messages: + msg68572 |
| 2008年06月22日 18:12:24 | georg.brandl | set | resolution: fixed messages: + msg68570 |
| 2008年06月21日 14:49:22 | humitos | set | files:
+ libsubprocess.diff nosy: + humitos messages: + msg68496 keywords: + patch |
| 2008年06月11日 23:01:24 | afoo | create | |