summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_keyword.py
Commit message (Collapse)AuthorAgeFilesLines
* bpo-36143: Regenerate Lib/keyword.py from the Grammar and Tokens file using ↵Pablo Galindo2019-03-251-110/+9
| | | | | | pgen (GH-12456) Now that the parser generator is written in Python (Parser/pgen) we can make use of it to regenerate the Lib/keyword file that contains the language keywords instead of parsing the autogenerated grammar files. This also allows checking in the CI that the autogenerated files are up to date.
* 17830: preserve line endings of original file when updating keywords.R David Murray2013-04-251-28/+30
| | | | | This fixes the test failures on Windows from the new tests, and includes test fixes as well as the module fix.
* #9607: restore keywords.kwlist after testing it.R David Murray2013-04-201-0/+2
|
* #9607: Add tests for the keyword module.R David Murray2013-04-201-0/+134
Based on the testing ideas in a patch written by Greg Malcolm.