1. 29 Oct, 2007 4 commits
  2. 27 Oct, 2007 7 commits
  3. 26 Oct, 2007 9 commits
  4. 25 Oct, 2007 3 commits
  5. 24 Oct, 2007 7 commits
  6. 23 Oct, 2007 8 commits
  7. 22 Oct, 2007 2 commits
    • Guido van Rossum's avatar
      Patch 1304, by Amaury Forgeot d'Arc. · 6bb4ab96
      Guido van Rossum authored
      Add md5module.c and sha1module.c to the project files,
      and in some cases bytes_methods.c and related .h files.
      6bb4ab96
    • Brett Cannon's avatar
      Make str/str8 comparisons return True/False for !=/==. · 82c7e08d
      Brett Cannon authored
      Code that has been returning str8 becomes much more apparent thanks to this
      (e.g., struct module returning str8 for all string-related formats or sqlite3
      passing in str8 instances when converting objects that had a __conform__
      method).  One also has to watch out in C code when making a key from char *
      using PyString in the C code but a str instance in Python code as that will not
      longer compare equal.
      
      Once str8 gains a constructor like the current bytes type then
      test_modulefinder needs a cleanup as the fix is a little messy in that file.
      
      Thanks goes to Thomas Lee for writing the patch for the change giving an
      initial run-down of why most of the tests were failing.
      82c7e08d