[issue809163] Can't add files with spaces

2011-01-07 Thread xiscu
xiscu added the comment: This is also my first contribution. The attached file is a diff against : - http://code.python.org/hg/branches/py3k/ The actual tip was: - 9489:4db13b4e76aa The patch adds only a test that triggers the issue. Please feel free to comment on that commit (so I can

[issue10862] Complete your registration to Python tracker -- key yq3FVw0zXbfo3RJCzK2PqphC2n0XTohy

2011-01-07 Thread xiscu
New submission from xiscu : On 01/07/2011 08:41 PM, Python tracker wrote: > To complete your registration of the user "xiscu" with > Python tracker, please do one of the following: > > - send a reply to rep...@bugs.python.org and maintain the subject line as is > (the

[issue7525] Yield example doesn't work as is explained in the documentation

2009-12-16 Thread xiscu
New submission from xiscu : In the documentation the is: ... >>>generator.throw(TypeError, "spam") TypeError('spam',) >>> generator.close() Don't forget to clean up when 'close()' is called. ... I'm getting: >>>genera