- 25 Nis, 2007 1 kayıt (commit)
-
-
Neal Norwitz yazdı
You might want to review this change as it's my first time. Be gentle. :-)
-
- 30 Mar, 2007 1 kayıt (commit)
-
-
Facundo Batista yazdı
instantiating the class. Docs and tests are updated.
-
- 26 Mar, 2007 1 kayıt (commit)
-
-
Facundo Batista yazdı
the ftplib tests.
-
- 30 Ock, 2007 1 kayıt (commit)
-
-
Tim Peters yazdı
-
- 12 Kas, 2006 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
Will backport to 2.5.
-
- 05 Nis, 2005 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
* resp[:1] in '123' # after Py2.2, this allowed blank responses to pass. * replace <> with != * provide a usage message for empty command line calls Backport candidate.
-
- 12 Şub, 2004 1 kayıt (commit)
-
-
Walter Dörwald yazdı
From SF patch #852334.
-
- 03 Haz, 2002 1 kayıt (commit)
-
-
Walter Dörwald yazdı
string.split(foo, bar) must be foo.split(bar) instead of bar.split(foo).
-
- 01 Haz, 2002 2 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
Raymond Hettinger yazdı
-
- 31 May, 2002 1 kayıt (commit)
-
-
Neal Norwitz yazdı
-
- 12 May, 2002 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
test if 'callable' has not been supplied is to test for None instead of False. The previous correction to 'if callable()' was wrong because an unusable callback would be ignored rather than raising an exception.
-
- 08 May, 2002 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 10 Mar, 2002 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
Fixes #527855.
-
- 16 Şub, 2002 2 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.
-
Tim Peters yazdı
-
- 28 Ara, 2001 2 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
Instead of sending the real user and host, use "anonymous@" (i.e. no host name at all!) as the default anonymous FTP password. This avoids privacy violations.
-
- 23 Ara, 2001 1 kayıt (commit)
-
-
Guido van Rossum yazdı
This should definitely be backported to 2.2.1. I'll leave it to Jack to decide whether he wants to fix this in MacPython 2.2.
-
- 17 Eki, 2001 1 kayıt (commit)
-
-
Guido van Rossum yazdı
ValueError on too-large inputs.
-
- 16 Eki, 2001 1 kayıt (commit)
-
-
Guido van Rossum yazdı
size(), parse150(): try int() first, catch OverflowError, fall back to long().
-
- 07 Eki, 2001 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 17 Agu, 2001 1 kayıt (commit)
-
-
Guido van Rossum yazdı
expression. This is needed for certain servers that (in violation of the standard) don't return the parentheses in the response. This fixes SF bug #441712 by Henrik Weber (not exactly using his patch).
-
- 31 Tem, 2001 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 26 Tem, 2001 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 24 Tem, 2001 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 09 Nis, 2001 1 kayıt (commit)
-
-
Jeremy Hylton yazdı
-
- 28 Şub, 2001 1 kayıt (commit)
-
-
Fred Drake yazdı
to the class namespace. Allow FTP.close() to be called more than once without tossing cookies. (This seems to be a fairly common idiom for .close() methods, so let's try to be consistent.)
-
- 15 Şub, 2001 1 kayıt (commit)
-
-
Guido van Rossum yazdı
SF patch #103517 by mfx.
-
- 09 Şub, 2001 1 kayıt (commit)
-
-
Eric S. Raymond yazdı
-
- 20 Ock, 2001 1 kayıt (commit)
-
-
Skip Montanaro yazdı
-
- 15 Ock, 2001 1 kayıt (commit)
-
-
Guido van Rossum yazdı
This is slightly controversial, but after reading the argumentation in the bug tracker for and against, I believe this is the right solution. Let me know if it breaks for you, and how.
-
- 14 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.
-
- 01 Eyl, 2000 1 kayıt (commit)
-
-
Barry Warsaw yazdı
#101187, which some modifications. Specifically, ntransfercmd(), transfercmd(), and retrbinary() all grow an optional `rest' argument, which if not None, is used as the argument to an FTP REST comman dbefore the socket is returned. Differences from the SF patch: - always compare against None with `is' or `is not' instead of == or != - no parens around conditional - RFC 959 defines the argument to REST is a string containing any ASCII characters in the range [33..126]. Therefore, we use the %s format character instead of %f or %d as suggested in the patch's comments. Note that we do /not/ sanity checkthe contents of the rest argument (but we'll document this in the library reference manual).
-
- 17 Agu, 2000 1 kayıt (commit)
-
-
Fred Drake yazdı
-
- 16 Agu, 2000 1 kayıt (commit)
-
-
Peter Schneider-Kamp yazdı
-
- 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...
-
- 28 Şub, 2000 1 kayıt (commit)
-
-
Guido van Rossum yazdı
docstrings into comments.
-
- 04 Şub, 2000 1 kayıt (commit)
-
-
Guido van Rossum yazdı
*this* set of patches is Ka-Ping's final sweep: The attached patches update the standard library so that all modules have docstrings beginning with one-line summaries. A new docstring was added to formatter. The docstring for os.py was updated to mention nt, os2, ce in addition to posix, dos, mac.
-