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
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.
___
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.
_