- 30 Mar, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 26 Mar, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 12 Mar, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 13 Şub, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
most recently opened URL in self.openedurl of the URLopener instance. This doesn't really work if multiple threads share the same opener instance! Fix: openedurl was actually simply the type prefix (e.g. "http:") followed by the rest of the URL; since the rest of the URL is available and the type is effectively determined by where you are in the code, I can reconstruct the full URL easily, e.g. "http:" + url.
-
- 05 Şub, 1998 2 kayıt (commit)
-
-
Guido van Rossum yazdı
- use the tempcache in the open() method, too. - use the "unwrap"ped url as key for the tempcache.
-
Guido van Rossum yazdı
(2) Provisional hack to avoid dying when trying to turn echo on or off on Macs, where os.system() doesn't exist.
-
- 19 Ock, 1998 1 kayıt (commit)
-
-
Guido van Rossum yazdı
would set the transfer to text mode instead of the specified mode.
-
- 28 Ara, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
retrieving files from the same host and directory, you had to close the previous instance before opening a new one; and retrieving a non-existent file would return an empty file. (The latter fix relies on maybe an undocumented property of NLST -- NLST of a file returns just that file, while NLST of a non-existent file returns nothing. A side effect, unfortunately, seems to be that now ftp-retrieving an *empty* directory may fail. Ah well.)
-
- 02 Ara, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 18 Kas, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
is indeed a dictionary (or a mapping).
-
- 27 Eki, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
problems with this module, even if an instance of a derived class is kept alive longer than the urllib module itself...
-
- 14 Eki, 1997 1 kayıt (commit)
-
-
Fred Drake yazdı
-
- 29 Eyl, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
Use "re" module, making it threadsafe.
-
- 08 Eyl, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
a shared class variable -- but each instance will attempt to clean it up entirely ob cleanup).
-
- 03 Eyl, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
Sjoerd: add separate administration of temporary files created y URLopener.retrieve() so cleanup can properly remove them. The old code removed everything in tempcache which was a bad idea if the user had passed a non-temp file into it. (I added a line to delete the tempcache in cleanup() -- it still seems to make sense.) Jack: in basejoin(), interpret relative paths starting in "../". This is necessary if the server uses symbolic links.
-
- 26 Agu, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
that multiple retrievals using the same connection will work. This leaves open the more general problem that after f = urlopen("ftp://...") f must be closed before another retrieval from the same host should be attempted.
-
- 20 Agu, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
Windows/Mac).
-
- 06 Haz, 1997 2 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
than just the four. Also folded some long lines.
-
- 03 Haz, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 28 May, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 16 Nis, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 11 Nis, 1997 2 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
- 02 Nis, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 10 Şub, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 30 Ock, 1997 1 kayıt (commit)
-
-
Guido van Rossum yazdı
guarded by 'if self.tempcache', to reduce the likelihood of this causing an exception when invoked during __del__...
-
- 13 Ara, 1996 1 kayıt (commit)
-
-
Guido van Rossum yazdı
for form field values.
-
- 10 Ara, 1996 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 27 Kas, 1996 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 20 Kas, 1996 1 kayıt (commit)
-
-
Guido van Rossum yazdı
IOError, keep the traceback.
-
- 11 Kas, 1996 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 22 Eki, 1996 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 10 Eki, 1996 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 10 Eyl, 1996 1 kayıt (commit)
-
-
Guido van Rossum yazdı
Fix 1: add a method geturl() to the file-like object returned by urlopen(). Fix 2: treat http error 301 the same as error 302.
-
- 26 Agu, 1996 2 kayıt (commit)
-
-
Guido van Rossum yazdı
Correctly handle a URL containing user:password@host when using a proxy.
-
Guido van Rossum yazdı
-
- 26 Haz, 1996 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 17 Haz, 1996 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 13 Haz, 1996 1 kayıt (commit)
-
-
Guido van Rossum yazdı
is forgiving about semi-numeric port numbers, and allows you to specify a default port (default is -1, None returned for nonnumeric port).
-