]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
* Changed all copyright messages to include 1993.
authorGuido van Rossum <guido@python.org>
Mon, 29 Mar 1993 10:43:31 +0000 (10:43 +0000)
committerGuido van Rossum <guido@python.org>
Mon, 29 Mar 1993 10:43:31 +0000 (10:43 +0000)
commit9bfef44d97d1ae24e03717e3d59024b44626a9de
tree736b9f406d27f9dc4496f103cd395fb7a97401d4
parent4b1302bd1d211881178618aa8f41fa4460180f2e
* Changed all copyright messages to include 1993.
* Stubs for faster implementation of local variables (not yet finished)
* Added function name to code object.  Print it for code and function
  objects.  THIS MAKES THE .PYC FILE FORMAT INCOMPATIBLE (the version
  number has changed accordingly)
* Print address of self for built-in methods
* New internal functions getattro and setattro (getattr/setattr with
  string object arg)
* Replaced "dictobject" with more powerful "mappingobject"
* New per-type functio tp_hash to implement arbitrary object hashing,
  and hashobject() to interface to it
* Added built-in functions hash(v) and hasattr(v, 'name')
* classobject: made some functions static that accidentally weren't;
  added __hash__ special instance method to implement hash()
* Added proper comparison for built-in methods and functions
97 files changed:
Include/assert.h
Include/bitset.h
Include/bltinmodule.h
Include/ceval.h
Include/cgensupport.h
Include/classobject.h
Include/compile.h
Include/dictobject.h
Include/errcode.h
Include/errors.h
Include/eval.h
Include/fileobject.h
Include/floatobject.h
Include/frameobject.h
Include/funcobject.h
Include/grammar.h
Include/intobject.h
Include/intrcheck.h
Include/listobject.h
Include/longintrepr.h
Include/longobject.h
Include/marshal.h
Include/metagrammar.h
Include/methodobject.h
Include/moduleobject.h
Include/mymalloc.h
Include/myselect.h
Include/node.h
Include/object.h
Include/objimpl.h
Include/opcode.h
Include/osdefs.h
Include/parsetok.h
Include/pgenheaders.h
Include/pyerrors.h
Include/pythonrun.h
Include/structmember.h
Include/sysmodule.h
Include/token.h
Include/traceback.h
Include/tupleobject.h
Modules/cdmodule.c
Modules/cgensupport.c
Modules/cgensupport.h
Modules/config.c.in
Modules/dbmmodule.c
Modules/fcntlmodule.c
Modules/imgfile.c
Modules/sgimodule.c
Modules/stropmodule.c
Modules/structmodule.c
Modules/sunaudiodev.c
Objects/classobject.c
Objects/dictobject.c
Objects/floatobject.c
Objects/frameobject.c
Objects/funcobject.c
Objects/intobject.c
Objects/longobject.c
Objects/mappingobject.c
Objects/methodobject.c
Objects/moduleobject.c
Objects/object.c
Objects/stringobject.c
Objects/tupleobject.c
Objects/typeobject.c
Parser/acceler.c
Parser/assert.h
Parser/bitset.c
Parser/firstsets.c
Parser/grammar.c
Parser/grammar1.c
Parser/intrcheck.c
Parser/listnode.c
Parser/metagrammar.c
Parser/node.c
Parser/parser.c
Parser/parser.h
Parser/pgen.c
Parser/pgen.h
Parser/pgenmain.c
Parser/printgrammar.c
Parser/tokenizer.c
Parser/tokenizer.h
Python/bltinmodule.c
Python/ceval.c
Python/cgensupport.c
Python/compile.c
Python/fmod.c
Python/getcwd.c
Python/import.c
Python/marshal.c
Python/pythonmain.c
Python/pythonrun.c
Python/strerror.c
Python/structmember.c
Python/traceback.c