[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.
___
Python-Dev mailing list -- python-dev@python.org
To unsubscribe send an email to python-dev-le...@python.org
https://mail.python.org/mailman3/lists/python-dev.python.org/
Message archived at 
https://mail.python.org/archives/list/python-dev@python.org/message/WNQVENTVABM5VIVUMEPR4WTOV7GMHFXS/
Code of Conduct: http://python.org/psf/codeofconduct/


[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 mailing list -- python-dev@python.org
To unsubscribe send an email to python-dev-le...@python.org
https://mail.python.org/mailman3/lists/python-dev.python.org/
Message archived at 
https://mail.python.org/archives/list/python-dev@python.org/message/LPIBWDUTRQZWQBU4RUEM6GTMA2XQIZMX/
Code of Conduct: http://python.org/psf/codeofconduct/


[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.org
https://mail.python.org/mailman3/lists/python-dev.python.org/
Message archived at 
https://mail.python.org/archives/list/python-dev@python.org/message/RZUBXSU2VVLI42S4WOSIXWYMEL2OYW4D/
Code of Conduct: http://python.org/psf/codeofconduct/