1. 19 May, 2007 6 commits
  2. 18 May, 2007 2 commits
  3. 17 May, 2007 6 commits
  4. 16 May, 2007 6 commits
  5. 15 May, 2007 1 commit
  6. 14 May, 2007 1 commit
  7. 13 May, 2007 4 commits
  8. 12 May, 2007 1 commit
  9. 11 May, 2007 9 commits
  10. 10 May, 2007 1 commit
  11. 09 May, 2007 3 commits
    • Walter Dörwald's avatar
      Backport checkin: · 3ebc45d6
      Walter Dörwald authored
      Fix a segfault when b"" was passed to b2a_qp() -- it was using strchr()
      instead of memchr().
      3ebc45d6
    • Neal Norwitz's avatar
      Add markup for True/False. Will backport · 0999a115
      Neal Norwitz authored
      0999a115
    • Collin Winter's avatar
      Fix a bug in test.test_support.open_urlresource(). · fa9be8c2
      Collin Winter authored
      If the call to requires() doesn't precede the filesystem check, we get the following situation:
      1. ./python Lib/test/regrtest.py test_foo # test needs urlfetch, not enabled, so skipped
      2. ./python Lib/test/regrtest.py -u urlfetch test_foo # test runs
      3. ./python Lib/test/regrtest.py test_foo # test runs (!)
      
      By moving the call to requires() *before* the filesystem check, the fact that fetched files are cached on the local disk becomes an implementation detail, rather than a semantics-changing point of note.
      fa9be8c2