1. 19 Sep, 2000 20 commits
  2. 18 Sep, 2000 17 commits
  3. 17 Sep, 2000 3 commits
    • Fred Drake's avatar
      Added documentation for new functions. · 5316ef4b
      Fred Drake authored
      Deprecated sequenceIncludes().
      
      Based on patch by Denis S. Otkidach <ods@users.sourceforge.net>,
      this closes SourceForge patch #101390.
      5316ef4b
    • Fred Drake's avatar
      Add invert() and __invert__() as aliases for inv()/__inv__(). · ea4d3f08
      Fred Drake authored
      Add contains() as alias for __contains__().
      Make PyArg_ParseTuple() formats include the function name.
      
      Based on patch by Denis S. Otkidach <ods@users.sourceforge.net>,
      this closes SourceForge patch #101390.
      ea4d3f08
    • Tim Peters's avatar
      Fix for SF bug 110688: Instance deallocation neglected to account for · 6b184918
      Tim Peters authored
      that Py_INCREF boosts global _Py_RefTotal when Py_REF_DEBUG is defined
      but Py_TRACE_REFS isn't.
      
      There are, IMO, way too many preprocessor gimmicks in use for refcount
      debugging (at least 3 distinct true/false symbols, but not all 8 combos
      are supported by the code, etc etc), and no coherent documentation of
      this stuff -- 'twas too painful to track this one down.
      6b184918