[issue46385] Remove parenthetical symbols for readability and nlp

2022-01-14 Thread Devin Harper
Devin Harper <345t...@gmail.com> added the comment: Couldn't find that mailing list sorry. There's only 1 for developers like you. Removing tuples would be backwards compatible. My plan would automatically convert tuples to lists. Just keep all the list code besides parent

[issue46385] Remove parenthetical symbols for readability and nlp

2022-01-14 Thread Devin Harper
New submission from Devin Harper <345t...@gmail.com>: Parenthetical symbols like ()[]{} are unneeded if you just remove the complaining in the compiler/interpreter/programming language. It will increase readability and natural language programming( NLP). Just treat the symbols as strin

[issue46321] Don't need delineators on lists

2022-01-09 Thread Devin Harper
Devin Harper <345t...@gmail.com> added the comment: Had to look up tuple in documentation instead of list. Thanks for mentioning tuple! -- stage: -> resolved status: open -> closed ___ Python tracker <https://bugs.python

[issue46321] Don't need delineators on lists

2022-01-09 Thread Devin Harper
New submission from Devin Harper <345t...@gmail.com>: a=1 b=2 c=3 list=a, b, c #Remove spaces at the end of lists. Because sometimes spaces are errors or not depending on the number of items in your list. Remove list delineators to save a little memory and time not typing those deli