Skip to content
Snippets Groups Projects
  1. May 08, 2009
    • Rocco Rutte's avatar
      patchbomb: quoted-printable encode overly long lines · 3e544c074459
      Rocco Rutte authored
      RfC2822 mandates a line length limit of 998 byte + CRLF.
      Python mail tools break lines at 990 byte. To prevent
      that, we quoted-printable encode overly long lines.
      3e544c074459
    • Martin Geisler's avatar
      patchbomb: fix quotes in help string · 03cfc6ea93df
      Martin Geisler authored
      03cfc6ea93df
    • Bryan O'Sullivan's avatar
      Windows: improve performance via buffered I/O · 7de68012f86e
      Bryan O'Sullivan authored
      The posixfile_nt code hits the win32 file API directly, which
      essentially amounts to performing a system call for every read and
      write. This is slow.
      
      We add a C extension that lets us use a Python file object instead,
      but preserve our desired POSIX-like semantics (the ability to rename
      or delete a file that is being accessed).
      
      If the C extension is not available (e.g. in a VPS environment
      without a compiler), we fall back to the posixfile_nt code.
      7de68012f86e
  2. Mar 26, 2009
  3. May 08, 2009
  4. May 04, 2009
  5. May 08, 2009
  6. Apr 28, 2009
  7. May 07, 2009
    • Giorgos Keramidas's avatar
      manpage build: fail early when xmlto is not available · e0eb03bfa5af
      Giorgos Keramidas authored
      When we try to build manpages with xmlto and sed, but xmlto is
      missing fail at the xmlto stage.  Otherwise, one may run `cd doc;
      make' and miss the warnings like:
      
        xmlto: not found
        sed: hg.1: No such file or directory
      
      and end up with empty files installed as manpages.
      e0eb03bfa5af
  8. May 08, 2009
  9. May 07, 2009
  10. May 06, 2009
  11. May 07, 2009
  12. May 06, 2009
  13. May 04, 2009
Loading