1. 09 Oct, 2001 5 commits
  2. 08 Oct, 2001 16 commits
  3. 07 Oct, 2001 13 commits
  4. 06 Oct, 2001 5 commits
    • Tim Peters's avatar
      _PyObject_VAR_SIZE: always round up to a multiple-of-pointer-size value. · 6d483d34
      Tim Peters authored
      As Guido suggested, this makes the new subclassing code substantially
      simpler.  But the mechanics of doing it w/ C macro semantics are a mess,
      and _PyObject_VAR_SIZE has a new calling sequence now.
      
      Question:  The PyObject_NEW_VAR macro appears to be part of the public API.
      Regardless of what it expands to, the notion that it has to round up the
      memory it allocates is new, and extensions containing the old
      PyObject_NEW_VAR macro expansion (which was embedded in the
      PyObject_NEW_VAR expansion) won't do this rounding.  But the rounding
      isn't actually *needed* except for new-style instances with dict pointers
      after a variable-length blob of embedded data.  So my guess is that we do
      not need to bump the API version for this (as the rounding isn't needed
      for anything an extension can do unless it's recompiled anyway).  What's
      your guess?
      6d483d34
    • Tim Peters's avatar
      Repaired the debug Windows deaths in test_descr, by allocating enough · 406fe3b1
      Tim Peters authored
      pad memory to properly align the __dict__ pointer in all cases.
      
      gcmodule.c/objimpl.h, _PyObject_GC_Malloc:
      + Added a "padding" argument so that this flavor of malloc can allocate
        enough bytes for alignment padding (it can't know this is needed, but
        its callers do).
      
      typeobject.c, PyType_GenericAlloc:
      + Allocated enough bytes to align the __dict__ pointer.
      + Sped and simplified the round-up-to-PTRSIZE logic.
      + Added blank lines so I could parse the if/else blocks <0.7 wink>.
      406fe3b1
    • Tim Peters's avatar
      _PyObject_GetDictPtr(): · 7254e5a3
      Tim Peters authored
      + Use the _PyObject_VAR_SIZE macro to compute object size.
      + Break the computation into lines convenient for debugger inspection.
      + Speed the round-up-to-pointer-size computation.
      7254e5a3
    • Tim Peters's avatar
      _PyObject_GC_Malloc(): split a complicated line in two. As is, there was · 8c18f258
      Tim Peters authored
      no way to talk the debugger into showing me how many bytes were being
      allocated.
      8c18f258
    • Fred Drake's avatar
  5. 05 Oct, 2001 1 commit