[issue29779] New environment variable PYTHONHISTORY

2019-05-24 Thread Zackery Spytz
Zackery Spytz added the comment: PR 473 was closed by its author. I have created a new pull request (PR 13208) that addresses all of Berker Peksag's comments on the old PR. Please have a look. -- nosy: +ZackerySpytz versions: +Python 3.8 -Python 3.7 _

[issue29779] New environment variable PYTHONHISTORY

2019-05-08 Thread Zackery Spytz
Change by Zackery Spytz : -- keywords: +patch pull_requests: +13119 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubsc

[issue29779] New environment variable PYTHONHISTORY

2017-03-22 Thread Berker Peksag
Changes by Berker Peksag : -- components: +Library (Lib) nosy: +berker.peksag stage: -> patch review type: -> enhancement ___ Python tracker ___ ___

[issue29779] New environment variable PYTHONHISTORY

2017-03-14 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: On Mar 12, 2017, at 11:42 AM, Chi Hsuan Yen wrote: >That's a great feature! Here's a question: what should be CPython's behavior >when PYTHONHISTORY is explicitly set to empty? Currently there's an error: > >$ PYTHONHISTORY= ./python >Python 3.7.0a0 (master:f65

[issue29779] New environment variable PYTHONHISTORY

2017-03-12 Thread Chi Hsuan Yen
Chi Hsuan Yen added the comment: That's a great feature! Here's a question: what should be CPython's behavior when PYTHONHISTORY is explicitly set to empty? Currently there's an error: $ PYTHONHISTORY= ./python Python 3.7.0a0 (master:f6595983e08fe20cf06a2535d74d912c6dbb044f, Mar 12 2017, 19:22

[issue29779] New environment variable PYTHONHISTORY

2017-03-12 Thread Chi Hsuan Yen
Changes by Chi Hsuan Yen : -- nosy: +Chi Hsuan Yen ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue29779] New environment variable PYTHONHISTORY

2017-03-10 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: I don't think the Python envar has to follow the contraction from bash. $PYTHONHISTORY reads very nicely. I have similar code in my $PYTHONSTARTUP, but it would be nice to be able to get rid of it and just let Python do the common thing. -- ___

[issue29779] New environment variable PYTHONHISTORY

2017-03-10 Thread Barry A. Warsaw
Changes by Barry A. Warsaw : -- nosy: +barry ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pytho

[issue29779] New environment variable PYTHONHISTORY

2017-03-10 Thread Serhiy Storchaka
New submission from Serhiy Storchaka: $HISTFILE is the name of the file in which Bash command history is saved. Shouldn't the name of similar environment variable for Python be PYTHONHISTFILE? Bash uses several environment variables for control its command history: HISTCONTROL, HISTFILE, HISTF

[issue29779] New environment variable PYTHONHISTORY

2017-03-09 Thread Levi Sabah
Changes by Levi Sabah <0xl...@gmail.com>: -- nosy: 0xl3vi priority: normal pull_requests: 488 severity: normal status: open title: New environment variable PYTHONHISTORY versions: Python 3.7 ___ Python tracker