1. 04 Jun, 2006 14 commits
  2. 03 Jun, 2006 22 commits
  3. 02 Jun, 2006 4 commits
    • Tim Peters's avatar
      pprint functions used to sort a dict (by key) if and only if · d609b1a2
      Tim Peters authored
      the output required more than one line.  "Small" dicts got
      displayed in seemingly random order (the hash-induced order
      produced by dict.__repr__).  None of this was documented.
      Now pprint functions always sort dicts by key, and the docs
      promise it.
      
      This was proposed and agreed to during the PyCon 2006 core
      sprint -- I just didn't have time for it before now.
      d609b1a2
    • Martin Blais's avatar
      Fixed struct test to not use unittest. · 7f7386cf
      Martin Blais authored
      7f7386cf
    • Neal Norwitz's avatar
      Patch #1357836: · d21a7fff
      Neal Norwitz authored
      Prevent an invalid memory read from test_coding in case the done flag is set.
      In that case, the loop isn't entered.  I wonder if rather than setting
      the done flag in the cases before the loop, if they should just exit early.
      
      This code looks like it should be refactored.
      
      Backport candidate (also the early break above if decoding_fgets fails)
      d21a7fff
    • Neal Norwitz's avatar
      More memory leaks from valgrind · 752968ea
      Neal Norwitz authored
      752968ea