* 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).
This commit is contained in:
Guido van Rossum 1993-12-20 12:53:10 +00:00
parent 455b87d457
commit 248a50c168
4 changed files with 5 additions and 163 deletions

View file

@ -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