- 11 Eki, 2002 1 kayıt (commit)
-
-
Jeremy Hylton yazdı
-
- 12 Eyl, 2002 2 kayıt (commit)
-
-
Jack Jansen yazdı
-
-
- 18 Agu, 2002 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
Jeremy reported that this is not allowed by RFC 2396; however, other tools support unescaped @'s so we should also. Apply SF patch 596581 closing bug 581529.
-
- 09 Agu, 2002 1 kayıt (commit)
-
-
Guido van Rossum yazdı
Weinberg). This changes all uses of deprecated tempfile functions to the recommended ones.
-
- 11 Haz, 2002 1 kayıt (commit)
-
-
Neal Norwitz yazdı
since the URLopener base class does and **kwargs are used in urlopen.
-
- 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.)
-
- 02 Haz, 2002 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
- 01 Haz, 2002 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
-
- 24 May, 2002 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 15 Nis, 2002 1 kayıt (commit)
-
-
Guido van Rossum yazdı
When os.stat() for a file raises OSError, turn it into IOError per documentation. Bugfix candidate.
-
- 04 Nis, 2002 1 kayıt (commit)
-
-
Fred Drake yazdı
This change is similar to the supplied patch, but does not save the opener when a proxy configuration is specified. This closes SF patch #523415.
-
- 02 Nis, 2002 1 kayıt (commit)
-
-
Guido van Rossum yazdı
that it works. Bugfix candidate (this and the previous checkin, obviously).
-
- 31 Mar, 2002 1 kayıt (commit)
-
-
Guido van Rossum yazdı
I really can't test this, but from reading the discussion in that bug report, it's likely that this works. It may also close a whole bunch of other bug reports related to urllib and proxies on Windows, but who knows.
-
- 26 Mar, 2002 1 kayıt (commit)
-
-
Neal Norwitz yazdı
-
- 22 Mar, 2002 1 kayıt (commit)
-
-
Walter Dörwald yazdı
and remove the unneccessary "import stat" statement.
-
- 18 Mar, 2002 1 kayıt (commit)
-
-
Andrew M. Kuchling yazdı
exists.
-
- 11 Şub, 2002 1 kayıt (commit)
-
-
Neal Norwitz yazdı
-
- 08 Ara, 2001 1 kayıt (commit)
-
-
Guido van Rossum yazdı
open_http(): In urllib.py library module, URLopener.open_https() returns a class instance of addinfourl() with its self.url property missing the protocol. Instead of "https://www.someurl.com", it becomes "://www.someurl.com".
-
- 13 Eki, 2001 1 kayıt (commit)
-
-
Fred Drake yazdı
reported by Neal Norwitz.
-
- 27 Agu, 2001 1 kayıt (commit)
-
-
Jeremy Hylton yazdı
Modify rfc822.formatdate() to always generate English names, regardless of locale. This is required by RFC 1123. In open_local_file() of urllib and urllib2, use new formatdate() from rfc822.
-
- 23 Agu, 2001 1 kayıt (commit)
-
-
Guido van Rossum yazdı
ftp urls.
-
- 11 Agu, 2001 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 09 Agu, 2001 3 kayıt (commit)
-
-
Tim Peters yazdı
-
Tim Peters yazdı
Look specific to Windows. Don't know whether it works.
-
Guido van Rossum yazdı
For local files urllib.py doesn't return the MIME headers that the documentation says it does: http://www.python.org/doc/current/lib/module- urllib.html#l2h-2187 states that "When the method is local-file, returned headers will include a Date representing the file's last-modified time, a Content- Length giving file size, and a Content-Type containing a guess at the file's type" But in Python 2.1 the only header that gets returned is the Content-Type: >>> import urllib >>> f = urllib.urlopen("gurk.txt") >>> f.info().headers ['Content-Type: text/plain\n']
-
- 04 Tem, 2001 1 kayıt (commit)
-
-
Fred Drake yazdı
This closes SF patch #419459.
-
- 15 Nis, 2001 1 kayıt (commit)
-
-
Guido van Rossum yazdı
Reported by Juan M. Bello Rivas.
-
- 09 Nis, 2001 1 kayıt (commit)
-
-
Moshe Zadka yazdı
Even though relative redirects are illegal, they are common urllib treated every relative redirect as though it was to http, even if the original was https:// As long as we're compensating for server bugs, might as well do it properly.
-
- 13 Mar, 2001 1 kayıt (commit)
-
-
Skip Montanaro yazdı
-
- 05 Mar, 2001 2 kayıt (commit)
-
-
Jack Jansen yazdı
-
Jack Jansen yazdı
-
- 02 Mar, 2001 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 01 Mar, 2001 1 kayıt (commit)
-
-
Skip Montanaro yazdı
giving it a slight facelift
-
- 28 Şub, 2001 1 kayıt (commit)
-
-
Tim Peters yazdı
-
- 27 Şub, 2001 1 kayıt (commit)
-
-
Moshe Zadka yazdı
an invalid 401 request is being handled.
-
- 15 Şub, 2001 1 kayıt (commit)
-
-
Skip Montanaro yazdı
number of entries into http_error_302 exceeds the value set for the maxtries attribute (which defaults to 10), the recursion is exited by calling the http_error_500 method (or if that is not defined, http_error_default).
-
- 09 Şub, 2001 1 kayıt (commit)
-
-
Tim Peters yazdı
-
- 28 Ock, 2001 1 kayıt (commit)
-
-
Skip Montanaro yazdı
case, the order of parameters in the output matches the order of the inputs.
-
- 20 Ock, 2001 1 kayıt (commit)
-
-
Skip Montanaro yazdı
parameters. This closes the code part of patch 103314.
-