[Python-checkins] CVS: python/dist/src/Mac/scripts gensuitemodule.py,1.19,1.20

Fredrik Lundh fredrik@pythonware.com
Thu, 24 Jan 2002 14:28:59 +0100


> *** gensuitemodule.py 2002/01/23 22:49:48 1.19
> --- gensuitemodule.py 2002/01/24 12:36:51 1.20
> ***************
> *** 821,825 ****
>   "break", "except", "import", "print", "class", "exec", "in", "raise",
>   "continue", "finally", "is", "return", "def", "for", "lambda", "try",
> ! "del", "from", "not", "while"]
>
>   def identify(str):
> --- 821,825 ----
>   "break", "except", "import", "print", "class", "exec", "in", "raise",
>   "continue", "finally", "is", "return", "def", "for", "lambda", "try",
> ! "del", "from", "not", "while", "yield"]

any reason this code isn't using keyword.kwlist ?

</F>