1. 08 May, 2003 1 commit
  2. 07 May, 2003 16 commits
  3. 06 May, 2003 18 commits
  4. 05 May, 2003 5 commits
    • Raymond Hettinger's avatar
      SF patch #729395: Dictionary tuning · 3539f6b8
      Raymond Hettinger authored
      * Increase dictionary growth rate resulting in more sparse dictionaries,
        fewer lookup collisions, increased memory use, and better cache
        performance.  For dicts with over 50k entries, keep the current
        growth rate in case an application is suffering from tight memory
        constraints.
      
      * Set the most common case (no resize) to fall-through the test.
      3539f6b8
    • Martin v. Löwis's avatar
      Patch #732479: Fix typos. · f2e488db
      Martin v. Löwis authored
      f2e488db
    • Raymond Hettinger's avatar
    • Tim Peters's avatar
      SF patch 730594: assert from longobject.c, line 1215. · c7bc0b98
      Tim Peters authored
      Some version of gcc in the "RTEMS port running on the Coldfire (m5200)
      processor" generates bad code for a loop in long_from_binary_base(),
      comparing the wrong half of an int to a short.  The patch changes the
      decl of the short temp to be an int temp instead.  This "simplifies"
      the code enough that gcc no longer blows it.
      c7bc0b98
    • Walter Dörwald's avatar
      On Mac OS X pwd.getpwall() might return the tuples · ce6829ad
      Walter Dörwald authored
      ('pgsql', '*', 252, []) and ('postgres', '*', 252, ['skip']),
      but pwd.getgrgid(252) might return ('pgsql', '', 252, ['skip']).
      
      Drop the test that tried to find a tuple similar to the one
      returned from pwd.getgrgid() among those for the same gid returned
      by pwd.getgrall(), as the only working definition of 'similar' seems
      to be 'has the same gid'. This check can be done more directly.
      
      This should fix SF bug #732783.
      ce6829ad