[Python-Dev] Python grammar test cases

2022-05-09 Thread Venkat Ramakrishnan
Greetings! I'm wondering if there's a repository of test cases that test the Python grammar. Any help would be appreciated. Thanks & Best Regards, Venkat. ___ Python-Dev mailing list -- python-dev@python.org To unsubscribe send an email to python-dev-le

[Python-Dev] Re: Python grammar test cases

2022-05-10 Thread Venkat Ramakrishnan
Presuming I am looking at the right link?: https://github.com/python/cpython/tree/main/Lib/test I am currently focusing on Lambda function. I have a few test cases written. I have some questions too. Would be great if I could talk/chat to someone about these questions. Thanks. ___

[Python-Dev] Re: Python grammar test cases

2022-05-10 Thread Venkat Ramakrishnan
I am looking at: https://docs.python.org/3/reference/grammar.html in which the following definition is found: lambda_slash_no_default: | lambda_param_no_default+ '/' ',' | lambda_param_no_default+ '/' &':' Can someone tell me how '/' is being used here in the syntax? Thanks, Venkat. _