1. 08 Oct, 1998 6 commits
    • Guido van Rossum's avatar
      Changes by Greg Stein (code) and GvR (design). · 36eef3c1
      Guido van Rossum authored
      Add a new member to the PyBufferProcs struct, bf_getcharbuffer.  For
      backward compatibility, this member should only be used (this includes
      testing for NULL!) when the flag Py_TPFLAGS_HAVE_GETCHARBUFFER is set
      in the type structure, below.  Note that if its flag is not set, we
      may be looking at an extension module compiled for 1.5.1, which will
      have garbage at the bf_getcharbuffer member (because the struct wasn't
      as long then).  If the flag is one, the pointer may still be NULL.
      The function found at this member is used in a similar manner as
      bf_getreadbuffer, but it is known to point to 8-bit character data.
      (See discussion in getargs.c checked in later.)
      
      As a general feature for extending the type structure and the various
      structures that (may) hang off it in a backwards compatible way, we
      rename the tp_xxx4 "spare" slot to tp_flags.  In 1.5.1 and before,
      this slot was always zero.  In 1.5.1, it may contain various flags
      indicating extra fields that weren't present in 1.5.1.  The only flag
      defined so far is for the bf_getcharbuffer member of the PyBufferProcs
      struct.
      
      Note that the new spares (tp_xxx5 - tp_xxx8), once they become used,
      should also be protected by a flag (or flags) in tp_flags.
      36eef3c1
    • Guido van Rossum's avatar
      For 1.5.2a2. · 7e1e5749
      Guido van Rossum authored
      Install zlib.dll in DLLs instead of windows32 system directory.
      Install freeze, webchecker and versioncheck tools.
      Add Content type: text/plain registry keys for .py, .pyw.
      Add file type .pyo (same as .pyc).
      7e1e5749
    • Guido van Rossum's avatar
      Some kind of source control krept in. · f6240cf3
      Guido van Rossum authored
      f6240cf3
    • Guido van Rossum's avatar
      Whatever · 98f936b5
      Guido van Rossum authored
      98f936b5
    • Guido van Rossum's avatar
      The previous checkin contained an experiment of Greg Stein's that wasn't · 5bd893b1
      Guido van Rossum authored
      meant for checkin, and which broke marshal.loads().
      5bd893b1
    • Guido van Rossum's avatar
      On Win32, use · 0f8b30f8
      Guido van Rossum authored
      LoadLibraryEx(pathname, NULL, LOAD_WITH_ALTERED_SEARCH_PATH)
      to search dependent DLLs in the directory of the pathname.
      0f8b30f8
  2. 07 Oct, 1998 29 commits
  3. 06 Oct, 1998 5 commits