cpython/Python
Guido van Rossum 5b7221849e * Fixed some subtleties with fastlocals. You can no longer access
f_fastlocals in a traceback object (this is a core dump hazard
  if there are <nil> entries), but instead eval_code() merges the fast
  locals back into the locals dictionary if it looks like the local
  variables will be retained.  Also, the merge routines save
  exceptions since this is sometimes needed (alas!).

* Added id() to bltinmodule.c, which returns an object's address
  (identity).  Useful to walk arbitrary data structures containing
  cycles.

* Added compile() to bltinmodule.c and compile_string() to
  pythonrun.[ch]: support to exec/eval arbitrary code objects.  The
  code that defaults globals and locals is moved from run_node in
  pythonrun.c (which is now identical to eval_node) to eval_code in
  ceval.c.  [XXX For elegance a clean-up session is necessary.]
1993-03-30 17:46:03 +00:00
..
bltinmodule.c * Fixed some subtleties with fastlocals. You can no longer access 1993-03-30 17:46:03 +00:00
ceval.c * Fixed some subtleties with fastlocals. You can no longer access 1993-03-30 17:46:03 +00:00
cgensupport.c * Changed all copyright messages to include 1993. 1993-03-29 10:43:31 +00:00
compile.c Changes to speed up local variables enormously, by avoiding dictionary 1993-03-30 13:18:41 +00:00
errors.c * Changed many files to use mkvalue() instead of newtupleobject(). 1993-03-16 12:15:04 +00:00
fmod.c * Changed all copyright messages to include 1993. 1993-03-29 10:43:31 +00:00
getcwd.c * Changed all copyright messages to include 1993. 1993-03-29 10:43:31 +00:00
graminit.c Latest gramamr 1992-04-06 12:34:37 +00:00
import.c Changes to speed up local variables enormously, by avoiding dictionary 1993-03-30 13:18:41 +00:00
marshal.c * Changed all copyright messages to include 1993. 1993-03-29 10:43:31 +00:00
modsupport.c * Changed many files to use mkvalue() instead of newtupleobject(). 1993-03-16 12:15:04 +00:00
pythonmain.c * Changed all copyright messages to include 1993. 1993-03-29 10:43:31 +00:00
pythonrun.c * Fixed some subtleties with fastlocals. You can no longer access 1993-03-30 17:46:03 +00:00
strerror.c * Changed all copyright messages to include 1993. 1993-03-29 10:43:31 +00:00
strtod.c fix HUGE and MAXVAL (suggested by Tim Peters) 1992-03-27 17:30:32 +00:00
structmember.c * Changed all copyright messages to include 1993. 1993-03-29 10:43:31 +00:00
sysmodule.c * Added Fixcprt.py: script to fix copyright message. 1993-01-26 13:33:44 +00:00
thread.c * Added Fixcprt.py: script to fix copyright message. 1993-01-26 13:33:44 +00:00
traceback.c * Changed all copyright messages to include 1993. 1993-03-29 10:43:31 +00:00