diff options
author | Guido van Rossum <guido@python.org> | 1993-12-20 12:53:10 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1993-12-20 12:53:10 (GMT) |
commit | 248a50c168c5368cb3e677ffe45e824771b1ddc0 (patch) | |
tree | 9cc964b022baca41ae95f5133b534959b774595d /Grammar | |
parent | 455b87d457a5afed29e7032af787fd20398b1dc9 (diff) | |
download | cpython-248a50c168c5368cb3e677ffe45e824771b1ddc0.zip cpython-248a50c168c5368cb3e677ffe45e824771b1ddc0.tar.gz cpython-248a50c168c5368cb3e677ffe45e824771b1ddc0.tar.bz2 |
* Grammar: corrected old typo (class instead of 'class')
* dosmodule.c: MSDOS specific stuff from posixmodule.c.
* posixmodule.c: removed all MSDOS specific stuff.
* tokenizer.h, parsetok.h: in prototypes, don't mix named and unnamed
parameters (MSC doesn't like this).
Diffstat (limited to 'Grammar')
-rw-r--r-- | Grammar/Grammar | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Grammar/Grammar b/Grammar/Grammar index 1a98a6a..de98aeb 100644 --- a/Grammar/Grammar +++ b/Grammar/Grammar @@ -143,4 +143,4 @@ exprlist: expr (',' expr)* [','] testlist: test (',' test)* [','] dictmaker: test ':' test (',' test ':' test)* [','] -classdef: class NAME ['(' testlist ')'] ':' suite +classdef: 'class' NAME ['(' testlist ')'] ':' suite |