1. 11 Feb, 2012 1 commit
  2. 10 Feb, 2012 3 commits
  3. 09 Feb, 2012 2 commits
  4. 08 Feb, 2012 1 commit
  5. 06 Feb, 2012 4 commits
  6. 05 Feb, 2012 8 commits
  7. 04 Feb, 2012 7 commits
  8. 03 Feb, 2012 3 commits
  9. 02 Feb, 2012 4 commits
  10. 01 Feb, 2012 4 commits
    • Brian Curtin's avatar
      merge. again. · 090ec3c7
      Brian Curtin authored
      090ec3c7
    • Brian Curtin's avatar
      Add a hint that CSD == Service Pack. · 10dda6e0
      Brian Curtin authored
      People searcing for the way to get a "service pack" will never find that we
      provide it here, and people that find this function won't know what CSD is
      until they run the function. On top of this, they won't know what the value
      means unless they really have a service pack installed.
      
      CSD, or Customer Service Diagnostics, is apparently no longer used, and was
      rarely used term at that. Most references to it online are from
      universities making Windows 2000 and XP service packs available to students.
      10dda6e0
    • Petri Lehtinen's avatar
      sqlite3: Handle strings with embedded zeros correctly · 023fe334
      Petri Lehtinen authored
      Closes #13676.
      023fe334
    • Raymond Hettinger's avatar
      Add usage note · fc3ba6b8
      Raymond Hettinger authored
      fc3ba6b8
  11. 31 Jan, 2012 2 commits
  12. 30 Jan, 2012 1 commit
    • Gregory P. Smith's avatar
      Fix zip_import.c's read_directory() to use appropriate types for the values · ab32066e
      Gregory P. Smith authored
      being read from the header vs the values being used by fseek and ftell
      (Py_ssize_t for those) and how they are computed.  Py_ssize_t is used for
      actual file offsets so that files greater than 2gigs could be supported.
      Updates the Py_BuildValue format string to match (including several existing
      wrong 'i's that should have been 'l's).
      ab32066e