1. 06 Jul, 2001 10 commits
  2. 05 Jul, 2001 13 commits
  3. 04 Jul, 2001 12 commits
  4. 03 Jul, 2001 3 commits
    • Fred Drake's avatar
      This change adjusts the profiling/tracing support so that the common · 9e3ad784
      Fred Drake authored
      path (with no profile/trace function) through eval_code2() and
      eval_frame() avoids several checks.
      
      In the common cases of calls, returns, and exception propogation,
      eval_code2() and eval_frame() used to test two values in the
      thread-state: the profiling function and the tracing function.  With
      this change, a flag is set in the thread-state if either of these is
      active, allowing a single check to suffice when both are NULL.  This
      also simplifies the code needed when either function is in use but is
      already active (to avoid profiling/tracing the profiler/tracer); the
      flag is set to 0 when the profile/trace code is entered, allowing the
      same check to suffice for "already in the tracer" for call/return/
      exception events.
      9e3ad784
    • Fredrik Lundh's avatar
      bug #416670 · d89a2e77
      Fredrik Lundh authored
      added copy/deepcopy support to SRE (still not enabled, since it's not
      covered by the test suite)
      d89a2e77
    • Fredrik Lundh's avatar
      bug #232815 · ee2f18d0
      Fredrik Lundh authored
      ch is unsigned, so testing for negative values doesn't make
      sense (as noticed by the OpenVMS compiler)
      ee2f18d0
  5. 02 Jul, 2001 2 commits