Issue 3085: chapter 17.1.3.5 'Replacing os.popen*' in the Python library reference contains an error
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) * ![]() |
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) * ![]() |
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 | |
