]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
* import.c (get_module): pass .py filename to parse_file, not .pyc filename!
authorGuido van Rossum <guido@python.org>
Tue, 30 Nov 1993 13:40:46 +0000 (13:40 +0000)
committerGuido van Rossum <guido@python.org>
Tue, 30 Nov 1993 13:40:46 +0000 (13:40 +0000)
commit590baa4a7a43b596119b47f605e3e570c2b3b0ee
tree767cbcf90f5b53bf63be9c2ea9a8081551120f10
parent8732d6aeea250f23af50b772d710109c9ee3bc00
* import.c (get_module): pass .py filename to parse_file, not .pyc filename!
* funcobject.c (func_repr): don't call getstringvalue(None) for anonymous
  functions.
* bltinmodule.c: removed lambda (which is now a built-in function);
  removed implied lambda for string arg to filter/map/reduce.
* Grammar, graminit.[ch], compile.[ch]: replaced lambda as built-in
  function by lambda as grammar entity: instead of "lambda('x: x+1')" you
  write "lambda x: x+1".
* Xtmodule.c (checkargdict): return 0, not NULL, for error.
Grammar/Grammar
Include/compile.h
Include/graminit.h
Objects/funcobject.c
Python/bltinmodule.c
Python/compile.c
Python/graminit.c
Python/import.c