1. 14 Jan, 2008 10 commits
  2. 13 Jan, 2008 6 commits
  3. 12 Jan, 2008 4 commits
  4. 11 Jan, 2008 18 commits
  5. 10 Jan, 2008 2 commits
    • Raymond Hettinger's avatar
      Neaten-up the named tuple docs · 22833bf2
      Raymond Hettinger authored
      22833bf2
    • Amaury Forgeot d'Arc's avatar
      Closing issue1761. · 8dca2dd6
      Amaury Forgeot d'Arc authored
      Surprising behaviour of the "$" regexp: it matches the
      end of the string, AND just before the newline at the end
      of the string::
      
          re.sub('$', '#', 'foo\n') == 'foo#\n#'
      
      Python is consistent with Perl and the pcre library, so
      we just document it.
      Guido prefers "\Z" to match only the end of the string.
      8dca2dd6