[issue37082] Assignment expression operator (walrus) not in built-in help()

2019-05-29 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: Seems this was added in db7b6b95828c25df6f428bc21a5d6d1cb68287a0 (2009) and wasn't updated from then. -- nosy: +xtreak ___ Python tracker

[issue37082] Assignment expression operator (walrus) not in built-in help()

2019-05-29 Thread Mark Dickinson
Mark Dickinson added the comment: @= is also missing. Looks like we need to go through the grammar and reconcile what's there with the symbols help. -- ___ Python tracker ___

[issue37082] Assignment expression operator (walrus) not in built-in help()

2019-05-29 Thread Mark Dickinson
Mark Dickinson added the comment: Looks like that list could do with some attention: - I don't see regular assignment there, either. - And "`" shouldn't be in that list. - Neither should "<>" - "->" (for function annotations) is missing. -- nosy: +mark.dickinson _

[issue37082] Assignment expression operator (walrus) not in built-in help()

2019-05-28 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- nosy: +pablogsal ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:/

[issue37082] Assignment expression operator (walrus) not in built-in help()

2019-05-28 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- nosy: +emilyemorehouse ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue37082] Assignment expression operator (walrus) not in built-in help()

2019-05-28 Thread Matthias Bussonnier
New submission from Matthias Bussonnier : Do the following at a Python prompt: ``` >>> help() Welcome to Python 3.8's help utility! [...]SNIP help> symbols Here is a list of the punctuation symbols which Python assigns special meaning to. Enter any symbol to get more help. !=