toxik added the comment:
Minor note: The patch mixes tabs and spaces. AFAIK, PEP 7 says to use
four spaces when making new code, and follow suite in legacy, or convert it.
_
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/iss
toxik added the comment:
Hm, may be so.
Feel free to change title/severity if you'd like to.
_
Tracker <[EMAIL PROTECTED]>
<http://bugs.python.org/issue1686386>
_
__
New submission from toxik <[EMAIL PROTECTED]>:
Presently it's impossible to use httplib.HTTPConnection.request and send
the several headers with the same name. This is because _send_request
assumes a dict is passed in, or a dict-like interface. Obviously one could
make a list subcl
New submission from toxik:
It's actually py251.
113 else:
114 f.close()
115 self.copy_file(script, outfile)
Earlier, f is set to None if file is not found, and we are in dry-run
mode. Simple solution:
113 elif f
toxik added the comment:
It doesn't die now, but AFAICT, it doesn't even try to copy the script
now. (With your patch.)
I might also add that this is for package_data.
__
Tracker <[EMAIL PROTECTED]>
<http://bugs.p
toxik added the comment:
It shouldn't try to copy the script anywhere, it should just tell me
what it was going to do, by means of console.
__
Tracker <[EMAIL PROTECTED]>
<http://bugs.python
toxik added the comment:
Mmh, well, as far as I could tell when I tested your patch, it didn't
say it's going to copy the file, but it didn't say it isn't going to either.
As far as this ticket is concerned however, I'd say the behavior is now
fixed.
_
toxik added the comment:
I don't really get how this could've ever worked. I tested using keyword
arguments in py24 and py25, didn't work there either.
I think the best approach would be fixing the SocketServer.py code (which
obviously needs a test as well, because