- 14 May, 2009 1 kayıt (commit)
-
-
Antoine Pitrou yazdı
svn+ssh://pythondev@svn.python.org/python/trunk ........ r72640 | antoine.pitrou | 2009-05-14 23:22:08 +0200 (jeu., 14 mai 2009) | 5 lines Issue #1664: Make nntplib IPv6-capable. Patch by Derek Morr. (Unfortunately, nntplib doesn't have a test suite) ........
-
- 05 Kas, 2008 1 kayıt (commit)
-
-
Christian Heimes yazdı
Patch by Victor, Reviewed by Barry
-
- 09 Şub, 2007 2 kayıt (commit)
-
-
Guido van Rossum yazdı
We still have 27 failing tests (down from 39).
-
Guido van Rossum yazdı
There's one major and one minor category still unfixed: doctests are the major category (and I hope to be able to augment the refactoring tool to refactor bona fide doctests soon); other code generating print statements in strings is the minor category. (Oh, and I don't know if the compiler package works.)
-
- 10 Ock, 2007 1 kayıt (commit)
-
-
Guido van Rossum yazdı
(a) "except E, V" -> "except E as V" (b) V is now limited to a simple name (local variable) (c) V is now deleted at the end of the except block
-
- 17 Tem, 2005 1 kayıt (commit)
-
-
Georg Brandl yazdı
docstrings to either "article number" or "message id".
-
- 03 Agu, 2004 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 26 Tem, 2004 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 12 Şub, 2004 1 kayıt (commit)
-
-
Walter Dörwald yazdı
From SF patch #852334.
-
- 19 Nis, 2003 1 kayıt (commit)
-
-
Guido van Rossum yazdı
which specifies a file where to divert the command's output (already supported by the body() method). (SF patch #720468) Thanks to Terry Carroll.
-
- 27 Şub, 2003 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 24 Kas, 2002 1 kayıt (commit)
-
-
Tim Peters yazdı
-
- 17 Kas, 2002 1 kayıt (commit)
-
-
Eric S. Raymond yazdı
-
- 14 Kas, 2002 1 kayıt (commit)
-
-
Neal Norwitz yazdı
-
- 13 Kas, 2002 1 kayıt (commit)
-
-
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.
-
- 03 Haz, 2002 1 kayıt (commit)
-
-
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.)
-
- 16 Şub, 2002 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
Replaces calls to socket.send() (which isn't guaranteed to send all data) with the new socket.sendall() method.
-
- 18 Eki, 2001 1 kayıt (commit)
-
-
Fredrik Lundh yazdı
-
- 01 Eki, 2001 1 kayıt (commit)
-
-
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.
-
- 09 Şub, 2001 1 kayıt (commit)
-
-
Eric S. Raymond yazdı
-
- 06 Şub, 2001 1 kayıt (commit)
-
-
Skip Montanaro yazdı
-
- 16 Ock, 2001 2 kayıt (commit)
-
-
Tim Peters yazdı
-
Thomas Wouters yazdı
readers', others *after*. (Netscape Collabra for the first category, INN-which-forks-nnrpd for the second.)
-
- 15 Ock, 2001 1 kayıt (commit)
-
-
Tim Peters yazdı
-
- 12 Ara, 2000 1 kayıt (commit)
-
-
Fred Drake yazdı
Use != instead of <> since <> is documented as "obsolescent". Use "is" and "is not" when comparing with None or type objects.
-
- 16 Tem, 2000 1 kayıt (commit)
-
-
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 ;)
-
- 28 Mar, 2000 1 kayıt (commit)
-
-
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...
-
- 10 Şub, 2000 1 kayıt (commit)
-
-
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.
-
- 04 Şub, 2000 1 kayıt (commit)
-
-
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.
-
- 21 Ara, 1998 1 kayıt (commit)
-
-
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.)
-
- 30 Haz, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
article() commands.
-
- 26 Mar, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 22 Eki, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 20 Eki, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
arguments to NNTP.__init__(), for nntp servers that need them.
-
- 26 Agu, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
Added a minimal test function.
-
- 17 Tem, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 14 Mar, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
(it should return a list of tuples, not a list of lists).
-
- 14 Şub, 1996 1 kayıt (commit)
-
-
Jack Jansen yazdı
-
- 22 Eyl, 1995 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 30 Mar, 1995 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-