Clovis Fabricio added the comment:
UGH! Sorry for that, I mispasted something and didn't notice, since it filled
the comment entry box perfectly :(
This is the real message I meant to paste:
vijay,
The workaround I provided above takes the blank spac
Clovis Fabricio added the comment:
I help in #python and always suggest people to not use double-underscore name
mangling when they mean private.
I agree that name mangling shouldn't be on the tutorial at all. It misleads
everybody coming from other languages into thinking that it
Changes by Clovis Fabricio :
--
versions: +Python 2.7
___
Python tracker
<http://bugs.python.org/issue5712>
___
___
Python-bugs-list mailing list
Unsubscribe:
Clovis Fabricio added the comment:
I've written a quick workaround for the issue, where I manually split the
filenames and always return a tuple.
It might be useful to someone experiencing this problem, so I'm adding it to
the issue here.
--
nosy: +nosklo
Added
New submission from Clovis Fabricio :
Suppose I want to simulate the following shell pipe using the subprocess
module:
`grep -v not | cut -c 1-10`
The documentation example here
http://docs.python.org/library/subprocess.html#replacing-shell-pipeline
Implies that I want to run this
New submission from Clovis Fabricio <[EMAIL PROTECTED]>:
The finish_content method in wsgiref.handlers.BaseHandler class resets
Content-Length to "0" if there was no content returned by the
application, even if the application has set it already.
That makes impossible to imple