[issue12524] change httplib docs POST example

2011-07-13 Thread Bharadwaj
Bharadwaj added the comment: Newbie to python dev. This looks like a good issue to get started with and I am interested in creating a patch. What should the new URL be? python.org:80? -- nosy: +barbi ___ Python tracker <http://bugs.python.

[issue12524] change httplib docs POST example

2011-07-13 Thread Bharadwaj
Bharadwaj added the comment: Is there someway to create a test page in python.org instead of an external domain? This can ensure many people have access to it and will not become defunct. Please suggest next steps to proceed with this ticket

[issue12524] change httplib docs POST example

2011-07-16 Thread Bharadwaj
Changes by Bharadwaj : -- keywords: +patch Added file: http://bugs.python.org/file22674/http_example.diff ___ Python tracker <http://bugs.python.org/issue12

[issue12524] change httplib docs POST example

2011-07-17 Thread Bharadwaj
Bharadwaj added the comment: Newbie here. Please be patient. When I tried using the POST form in this page, I ran into minor issues. 1. The form returns a 302 to the actual issue page. Some other example with 200 may be better. 2. The params are a little weird, with '@' in the names

[issue12524] change httplib docs POST example

2011-07-20 Thread Bharadwaj
Changes by Bharadwaj : Added file: http://bugs.python.org/file22704/http_example2.diff ___ Python tracker <http://bugs.python.org/issue12524> ___ ___ Python-bugs-list m

[issue13359] urllib2 doesn't escape spaces in http requests

2011-11-09 Thread Krishna Bharadwaj
Krishna Bharadwaj added the comment: I have used the quote method to percent encode the url for spaces and similar characters. This is my first patch. Please let me know if there is anything wrong. I will correct and re-submit it. I ran the test_urllib2.py which gave an OK for 34 tests

[issue13375] Provide a namedtuple style interface for os.walk values

2011-11-09 Thread Krishna Bharadwaj
Krishna Bharadwaj added the comment: Have included a patch which alters the walk method to yield a namedtuple and the members can be accessed by dirpath, dirnames and filenames. Got the following results after running the test. Ran 61 tests in 0.080s OK (skipped=4) Please let me know if

[issue13375] Provide a namedtuple style interface for os.walk values

2011-11-09 Thread Krishna Bharadwaj
Krishna Bharadwaj added the comment: Hey Amaury, can you tell me if the following test cases would suffice? If not, I can think of adding something more comprehensive. Also, can you provide some pointers related to the bootstrap issue so that I can look at the same? -- Added file