[issue8604] Alias for distutils.file_util.write_file in e.g. shutils

2010-05-03 Thread Olemis Lang
New submission from Olemis Lang olemis...@gmail.com: Often I have the contents to be written in a file at a given path that I know as well. I recently tried to find a function in stdlib to do that and to my surprise this is what I found : - Such function exists - It's

[issue5072] urllib.open sends full URL after GET command instead of local path

2009-01-27 Thread Olemis Lang
Olemis Lang ole...@gmail.com added the comment: Actually I am using a proxy hosted in some other machine (i.e. not my PC ... sorry, I didnt mention :S ...) I «debugged» urllib and, when branching at this point (see below ;) in URLopener.open_http : {{{ #!python # urllib,py def open_http

[issue5072] urllib.open sends full URL after GET command instead of local path

2009-01-27 Thread Olemis Lang
Olemis Lang ole...@gmail.com added the comment: Quoting Antoine Pitrou ... I suppose 172.18.2.7:3128 is the address:port of the your proxy, right? Yes ... In which case, urllib seems to do the right thing. When talking to an HTTP proxy, requests are of the form GET http://site.com/path

[issue5072] urllib.open sends full URL after GET command instead of local path

2009-01-26 Thread Olemis Lang
New submission from Olemis Lang ole...@gmail.com: Hello ... The first thing I have to say is that I searched the open issues and I found nothing similar to what I am going to report hereinafter. If this ticket is duplicate , I apologize ... Yesterday I was testing how to access the wiki

[issue5072] urllib.open sends full URL after GET command instead of local path

2009-01-26 Thread Olemis Lang
Olemis Lang ole...@gmail.com added the comment: Ooops ... sorry, remove the print statement. The patch is as follows : {{{ #!diff --- /usr/lib/python2.5/urllib.py2008-07-31 13:40:40.0 -0500 +++ /media/urllib_unix.py 2009-01-26 09:48:54.0 -0500 @@ -270,6 +270,7