1. 14 May, 2009 1 kayıt (commit)
  2. 05 Kas, 2008 1 kayıt (commit)
  3. 09 Şub, 2007 2 kayıt (commit)
  4. 10 Ock, 2007 1 kayıt (commit)
  5. 17 Tem, 2005 1 kayıt (commit)
  6. 03 Agu, 2004 1 kayıt (commit)
  7. 26 Tem, 2004 1 kayıt (commit)
  8. 12 Şub, 2004 1 kayıt (commit)
  9. 19 Nis, 2003 1 kayıt (commit)
  10. 27 Şub, 2003 1 kayıt (commit)
  11. 24 Kas, 2002 1 kayıt (commit)
  12. 17 Kas, 2002 1 kayıt (commit)
  13. 14 Kas, 2002 1 kayıt (commit)
  14. 13 Kas, 2002 1 kayıt (commit)
    • Eric S. Raymond's avatar
      Make nntplib aware of ~/.netrc credentials; now they get used if they are · b2db587b
      Eric S. Raymond yazdı
      present and the caller has not specified a name/password pair.  This change
      makes it less likely that a lazy coder will expose sensitive information in a
      word-readable script.
      
      Also, make the test a bit smarter.  If NNTPSERVER is defined in the environment
      it will go talk to that server rather than look for a possibly nonexistent
      local one named 'news'.  Maybe the osession initializer ought to look at
      NNTPSERVER rather than requiring a host arg?  Must look around and see how
      universal this convention is first.
      b2db587b
  15. 03 Haz, 2002 1 kayıt (commit)
    • Walter Dörwald's avatar
      Remove uses of the string and types modules: · 65230a2d
      Walter Dörwald yazdı
      x in string.whitespace => x.isspace()
      type(x) in types.StringTypes => isinstance(x, basestring)
      isinstance(x, types.StringTypes) => isinstance(x, basestring)
      type(x) is types.StringType => isinstance(x, str)
      type(x) == types.StringType => isinstance(x, str)
      string.split(x, ...) => x.split(...)
      string.join(x, y) => y.join(x)
      string.zfill(x, ...) => x.zfill(...)
      string.count(x, ...) => x.count(...)
      hasattr(types, "UnicodeType") => try: unicode except NameError:
      type(x) != types.TupleTuple => not isinstance(x, tuple)
      isinstance(x, types.TupleType) => isinstance(x, tuple)
      type(x) is types.IntType => isinstance(x, int)
      
      Do not mention the string module in the rlcompleter docstring.
      
      This partially applies SF patch http://www.python.org/sf/562373
      (with basestring instead of string). (It excludes the changes to
      unittest.py and does not change the os.stat stuff.)
      65230a2d
  16. 16 Şub, 2002 1 kayıt (commit)
  17. 18 Eki, 2001 1 kayıt (commit)
  18. 01 Eki, 2001 1 kayıt (commit)
    • Guido van Rossum's avatar
      SF patch #462628 (Travers Naran) NNTPLib supports saving BODY to a file. · d1d584f4
      Guido van Rossum yazdı
        I modified nntplib so the body method can accept an
        optional second parameter pointing to a filehandle or
        filename (string). This way, really long body
        articles can be stored to disk instead of kept in
        memory. The way I made the modification should make
        it easy to extend this functionality to other extended
        return methods.
      d1d584f4
  19. 09 Şub, 2001 1 kayıt (commit)
  20. 06 Şub, 2001 1 kayıt (commit)
  21. 16 Ock, 2001 2 kayıt (commit)
  22. 15 Ock, 2001 1 kayıt (commit)
  23. 12 Ara, 2000 1 kayıt (commit)
  24. 16 Tem, 2000 1 kayıt (commit)
    • Thomas Wouters's avatar
      Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either · 7e474022
      Thomas Wouters yazdı
      comments, docstrings or error messages. I fixed two minor things in
      test_winreg.py ("didn't" -> "Didn't" and "Didnt" -> "Didn't").
      
      There is a minor style issue involved: Guido seems to have preferred English
      grammar (behaviour, honour) in a couple places. This patch changes that to
      American, which is the more prominent style in the source. I prefer English
      myself, so if English is preferred, I'd be happy to supply a patch myself ;)
      7e474022
  25. 28 Mar, 2000 1 kayıt (commit)
    • Guido van Rossum's avatar
      Fredrik Lundh: · 93a7c0fe
      Guido van Rossum yazdı
      This fixes a bunch of socket.connect(host, post) calls.  Note that I
      haven't tested all modules -- I don't have enough servers here...
      93a7c0fe
  26. 10 Şub, 2000 1 kayıt (commit)
    • Barry Warsaw's avatar
      Added new exception classes: · 9dd78729
      Barry Warsaw yazdı
          NNTPError - derived from Exception, it's the base class for all
          other exceptions in this module
      
          NNTPReplyError - what used to be error_reply
      
          NNTPTemporaryError - what used to be error_temp
      
          NNTPPermanentError - what used to be error_perm
      
          NNTPProtocolError - what used to be error_proto
      
          NNTPDataError - what used to be error_data
      
      All the old names are retained for backwards compatibility; they point
      to the class that replaces them.  Also, any code in this module that
      raises an exception, now does so with the exception class.
      
      NNTP.__init__(): Added a new optional argument `readermode', which is
      a flag that defaults to false.  When set to true, the "mode reader"
      command is sent to the NNTP server before user authentication.  Reader
      mode is sometimes necessary if you are connecting to an NNTP server on
      the local machine and intend to call reader-specific comamnds, such as
      `group'.  If you get unexpected NNTPPermanentErrors, you might need to
      set readermode.  Patch provided by Thomas Wouters (who include the
      standard disclaimer on is patches@python.org submission), and inspired
      by Jim Tittsler.
      9dd78729
  27. 04 Şub, 2000 1 kayıt (commit)
    • Guido van Rossum's avatar
      More trivial comment -> docstring transformations by Ka-Ping Yee, · 54f22ed3
      Guido van Rossum yazdı
      who writes:
      
      Here is batch 2, as a big collection of CVS context diffs.
      Along with moving comments into docstrings, i've added a
      couple of missing docstrings and attempted to make sure more
      module docstrings begin with a one-line summary.
      
      I did not add docstrings to the methods in profile.py for
      fear of upsetting any careful optimizations there, though
      i did move class documentation into class docstrings.
      
      The convention i'm using is to leave credits/version/copyright
      type of stuff in # comments, and move the rest of the descriptive
      stuff about module usage into module docstrings.  Hope this is
      okay.
      54f22ed3
  28. 21 Ara, 1998 1 kayıt (commit)
    • Guido van Rossum's avatar
      Marc-Andre Lemburg notes about statparse(): · 98c17b3a
      Guido van Rossum yazdı
      """
      The message ID is returned lowercased and there is no way to access
      the original ID the server sent. Now at least some news servers
      are very picky about the case of the ID and return errors when
      fetching articles with mixed case given a lowercased version
      of the ID.
      
      The solution is simple: remove the string.lower() call.
      """
      
      (I might add that the lowercasing was probably introduced as a result
      of sloppy copy-and-paste coding; there's a string.lower in a similar
      piece of code a bit higher in the source, that makes more sense --
      it's lowercasing the group name.)
      98c17b3a
  29. 30 Haz, 1998 1 kayıt (commit)
  30. 26 Mar, 1998 1 kayıt (commit)
  31. 22 Eki, 1997 1 kayıt (commit)
  32. 20 Eki, 1997 1 kayıt (commit)
  33. 26 Agu, 1997 1 kayıt (commit)
  34. 17 Tem, 1997 1 kayıt (commit)
  35. 14 Mar, 1997 1 kayıt (commit)
  36. 14 Şub, 1996 1 kayıt (commit)
  37. 22 Eyl, 1995 1 kayıt (commit)
  38. 30 Mar, 1995 1 kayıt (commit)