1. 06 Feb, 1998 6 commits
  2. 05 Feb, 1998 6 commits
  3. 04 Feb, 1998 5 commits
  4. 03 Feb, 1998 1 commit
  5. 02 Feb, 1998 2 commits
  6. 31 Jan, 1998 5 commits
  7. 30 Jan, 1998 1 commit
  8. 29 Jan, 1998 7 commits
  9. 28 Jan, 1998 2 commits
  10. 27 Jan, 1998 3 commits
  11. 26 Jan, 1998 2 commits
    • Barry Warsaw's avatar
      Unpickler.load_inst(), Unpickler.load_obj(), Unpickler.load_build(): · abe2a457
      Barry Warsaw authored
      Fixed problems when unpickling in restricted execution environments.
      These methods try to assign to an instance's __class__ attribute, or
      access the instances __dict__, which are prohibited in REE.  For the
      first two methods, I re-implemented the old behavior when assignment
      to value.__class__ fails.
      
      For the load_build() I also re-implemented the old behavior when
      inst.__dict__.update() fails but this means that unpickling in REE is
      semantically different than unpickling in unrestricted mode.
      abe2a457
    • Barry Warsaw's avatar
      get(): Fixed a bug in the merge order of the dictionaries. This makes · 5da0f504
      Barry Warsaw authored
      a copy of the defaults dictionary and merges the section's dictionary
      into it so that sections can override the defaults.
      5da0f504