Created on 2017-09-20 20:18 by bazwal, last changed 2017-10-10 22:04 by Mariatta. This issue is now closed.
| Pull Requests | |||
|---|---|---|---|
| URL | Status | Linked | Edit |
| PR 3925 | merged | infinitewarp, 2017-10-09 02:54 | |
| PR 3948 | merged | python-dev, 2017-10-10 21:54 | |
| Messages (5) | |||
|---|---|---|---|
| msg302655 - (view) | Author: bazwal (bazwal) | Date: 2017-09-20 20:18 | |
The second example in the readline module docs uses readline.get_history_length() (lines 8 & 14) where it should use readline.get_current_history_length(). |
|||
| msg303923 - (view) | Author: Brad Smith (infinitewarp) * | Date: 2017-10-09 02:56 | |
I ran into the same bug in the documentation recently. I've opened a pull request here that fixes it: https://github.com/python/cpython/pull/3925 As I was trying to figure out why the example was broken, I wrote up a little more context to explain the current behavior and the fix: https://docs.python.org/3.7/library/readline.html#example https://docs.python.org/3.6/library/readline.html#example In the "Example" section, the second example that "supports concurrent interactive sessions, by only appending the new history" will actually *never* write any lines to a custom history file. This is conveniently masked by the fact that the file path used in the example code also happens to be the default path that readline automatically writes history to, but if you specify *any* other file path, you will see that the new file is created but never has any content written to it. The problem in this example is the use of `get_history_length` to get "previous" and "current" history lengths for determining how many lines to append to the file. Both calls to `get_history_length` always return `-1` here. Thus, when `append_history_file` is called, it always receives a first argument of `0` (because `-1 - -1 == 0`), resulting in zero lines written to the file. Instead of `get_history_length`, the example code *should* call `get_current_history_length`. Swapping that function call makes the example behave as expected, appending new lines to the file. |
|||
| msg304088 - (view) | Author: Mariatta (Mariatta) * | Date: 2017-10-10 21:52 | |
New changeset eeb5ffd54e56dd89a99c74eb512c36d62649cfec by Mariatta (Brad Smith) in branch 'master': bpo-31537: Update readline documentation example. (GH-3925) https://github.com/python/cpython/commit/eeb5ffd54e56dd89a99c74eb512c36d62649cfec |
|||
| msg304090 - (view) | Author: Mariatta (Mariatta) * | Date: 2017-10-10 22:03 | |
New changeset 10eb14e2c5fe08c4193668530eaef156e07c3674 by Mariatta (Miss Islington (bot)) in branch '3.6': bpo-31537: Update readline documentation example. (GH-3925) (GH-3948) https://github.com/python/cpython/commit/10eb14e2c5fe08c4193668530eaef156e07c3674 |
|||
| msg304091 - (view) | Author: Mariatta (Mariatta) * | Date: 2017-10-10 22:04 | |
Fixed. Thanks! |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2017-10-10 22:04:12 | Mariatta | set | status: open -> closed versions: - Python 3.5 messages: + msg304091 resolution: fixed |
| 2017-10-10 22:03:16 | Mariatta | set | messages: + msg304090 |
| 2017-10-10 21:54:12 | python-dev | set | pull_requests: + pull_request3923 |
| 2017-10-10 21:52:59 | Mariatta | set | nosy:
+ Mariatta messages: + msg304088 |
| 2017-10-09 02:56:45 | infinitewarp | set | nosy:
+ infinitewarp messages: + msg303923 |
| 2017-10-09 02:54:14 | infinitewarp | set | keywords:
+ patch stage: patch review pull_requests: + pull_request3898 |
| 2017-09-20 20:18:47 | bazwal | create | |