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.

classification
Title: Interactive shell overwrites history
Type: behavior Stage:
Components: Versions: Python 3.6
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: Nosy List: dingens
Priority: normal Keywords:

Created on 2018-11-19 15:20 by dingens, last changed 2022-04-11 14:59 by admin.

Messages (1)
msg330103 - (view) Author: (dingens) Date: 2018-11-19 15:20
When opening two shells at the same time, history from the one that is closed first gets lost.

Steps to reproduce:
- let's call the contents of the history before this experiment `z`
- open two interactive shells called A and B
- execute commands in them, say `a` and `b`, respectively
- close shell A
- close shell B

Actual behavior:
- history contains `z` then `b`

Expected behavior:
- history contains `z` then `a` then `b`

possibly related: issue22940
History
Date User Action Args
2022-04-11 14:59:08adminsetgithub: 79461
2018-11-19 15:20:30dingenscreate