]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
* classobject.c: in instance_getattr, don't make a method out of a
authorGuido van Rossum <guido@python.org>
Tue, 25 May 1993 09:38:27 +0000 (09:38 +0000)
committerGuido van Rossum <guido@python.org>
Tue, 25 May 1993 09:38:27 +0000 (09:38 +0000)
commiteb6b33a837a180221b635331e005f990024bdb30
treeea03e645019d8494df1753da7ef42f86559ed5f6
parent23301a9467024eb70b654924c3f0a54d76702e47
* classobject.c: in instance_getattr, don't make a method out of a
  function found as instance data.
* socketmodule.c: added 'flags' argument sendto/recvfrom, rewrite
  argument parsing in send/recv.
* More changes related to access (terminology change: owner instead of
  class; allow any object as owner; local/global variables are owned
  by their dictionary, only class/instance data is owned by the class;
  "from...import *" now only imports objects with public access; etc.)
Include/ceval.h
Include/frameobject.h
Modules/socketmodule.c
Objects/accessobject.c
Objects/classobject.c
Objects/frameobject.c
Objects/moduleobject.c
Python/ceval.c
Python/import.c