1. 01 Şub, 2001 19 kayıt (commit)
  2. 31 Ock, 2001 13 kayıt (commit)
    • Barry Warsaw's avatar
      Long ago, Guido suggested that I add this to the standard library. · 7e0d9563
      Barry Warsaw yazdı
      I'm now checking it in.  I need to write some documentation for it,
      but I don't have time right now.  Still, I wanted to get this into
      2.1a2.
      
      # Overview:
      #
      # This file implements the minimal SMTP protocol as defined in RFC 821.  It
      # has a hierarchy of classes which implement the backend functionality for the
      # smtpd.  A number of classes are provided:
      #
      #   SMTPServer - the base class for the backend.  Raises an UnimplementedError
      #   if you try to use it.
      #
      #   DebuggingServer - simply prints each message it receives on stdout.
      #
      #   PureProxy - Proxies all messages to a real smtpd which does final
      #   delivery.  One known problem with this class is that it doesn't handle
      #   SMTP errors from the backend server at all.  This should be fixed
      #   (contributions are welcome!).
      #
      #   MailmanProxy - An experimental hack to work with GNU Mailman
      #   <www.list.org>.  Using this server as your real incoming smtpd, your
      #   mailhost will automatically recognize and accept mail destined to Mailman
      #   lists when those lists are created.  Every message not destined for a list
      #   gets forwarded to a real backend smtpd, as with PureProxy.  Again, errors
      #   are not handled correctly yet.
      7e0d9563
    • Barry Warsaw's avatar
      Simple embedded program that does a module import. Useful for · f9abaf42
      Barry Warsaw yazdı
      debugging leaks and other memory problems.
      f9abaf42
    • Barry Warsaw's avatar
      2df3c41e
    • Barry Warsaw's avatar
      Add targets to make building `loop' and `import' easier. Useful for · e98626d9
      Barry Warsaw yazdı
      debugging memory leaks and the like.
      e98626d9
    • Barry Warsaw's avatar
      Document the two changes to the mailbox.py module: · 30dbd142
      Barry Warsaw yazdı
      - All constructors grow an optional argument `factory' which is a
        callable used when new message instances are created by the next()
        methods.  Defaults to the rfc822.Message class.
      
      - A new subclass of UnixMailbox is added, called PortableUnixMailbox.
        It's identical to UnixMailbox, but uses a more portable test for
        From_ delimiter lines.  With PortableUnixMailbox, any line that
        starts with "From " is considered a delimiter (this should really
        check for two newlines before the F, but it doesn't.
      30dbd142
    • Barry Warsaw's avatar
      Two changes: · 81ad67cd
      Barry Warsaw yazdı
      - All constructors grow an optional argument `factory' which is a
        callable used when new message instances are created by the next()
        methods.  Defaults to the rfc822.Message class.
      
      - A new subclass of UnixMailbox is added, called PortableUnixMailbox.
        It's identical to UnixMailbox, but uses a more portable test for
        From_ delimiter lines.  With PortableUnixMailbox, any line that
        starts with "From " is considered a delimiter (this should really
        check for two newlines before the F, but it doesn't.
      81ad67cd
    • Barry Warsaw's avatar
      Some rewriting of the "Internationalizing your programs and modules" · b416290d
      Barry Warsaw yazdı
      subsection to include a discussion of the msgfmt.py program.
      b416290d
    • Jeremy Hylton's avatar
      2fa699ec
    • Tim Peters's avatar
      Docs for new Windows zlib build procedure. · ee826f88
      Tim Peters yazdı
      ee826f88
    • Mark Hammond's avatar
      Fix [ Bug #129293 ] zlib library used for binary win32 distribution can crash · ae8c268a
      Mark Hammond yazdı
      This involves changing the zlib build process to build zlib itself from sources, then use that library.  Also updated are the comments to reflect the new official home of zlib, and add Windows specific notes regarding the build process.
      ae8c268a
    • Mark Hammond's avatar
      Partial fix to [ Bug #128685 ] popen on Win9x isnt smart enough about finding w9xpopen.exe. · 0850137f
      Mark Hammond yazdı
      "Partial" as the code uses sys.prefix in an attempt to locate 'w9xpopen.exe', but sys.prefix is not set if Python can't find it itself.  So this _still_ fails in Pythonwin, but I am committing the patch for 2 reasons:
      * Embedded apps that set sys.prefix or use PYTHONHOME will work
      * The exception raised on failure to find the executable is far more obvious
      0850137f
    • Mark Hammond's avatar
    • Tim Peters's avatar
      SF bug #130532: newest CVS won't build on AIX. · 1ff31f95
      Tim Peters yazdı
      Removed illegal redefinition of REPR macro; kept the one with the
      argument name that isn't too easy to confuse with zero <wink>.
      1ff31f95
  3. 30 Ock, 2001 8 kayıt (commit)