1. 25 Aug, 1998 1 commit
  2. 24 Aug, 1998 6 commits
  3. 23 Aug, 1998 1 commit
  4. 21 Aug, 1998 2 commits
  5. 20 Aug, 1998 10 commits
  6. 19 Aug, 1998 1 commit
  7. 18 Aug, 1998 13 commits
  8. 17 Aug, 1998 2 commits
  9. 14 Aug, 1998 3 commits
  10. 13 Aug, 1998 1 commit
    • Jeremy Hylton's avatar
      Enter Jim Fulton's latest version. He writes: · ce616e40
      Jeremy Hylton authored
      I had to make a slight diddle to work with Python 1.4, which
      we and some of our customers are still using. :(
      
      I've also made a few minor enhancements:
      
        - You can now both get and set the memo using a 'memo'
          attribute.  This is handy for certain advanced applications
          that we have.
      
        - Added a 'binary' attribute to get and set the binary
          mode for a pickler.
      
        - Added a somewhat experimental 'fast' attribute.  When this
          is set, objects are not placed in the memo during pickling.
          This should lead to faster pickling and smaller pickles in
          cases where:
      
            o you *know* there are no circular references, and
      
            o either you've:
      
              - preloaded the memo with class information
                by pickling classes in non-fast mode or by
                manipilating the memo directly, or
      
              - aren't pickling instances.
      ce616e40