[issue12614] Allow to explicitly set the method of urllib.request.Request

2012-11-22 Thread Senthil Kumaran
Senthil Kumaran added the comment: Hello Miki Tebeka, The change requested by this issue (and provided by the patch) is already in place in 3.3. This was committed as part of issue1673007 has the same behavior too. I am closing this as duplicate. Thank you, Senthil -- resolution:

[issue12614] Allow to explicitly set the method of urllib.request.Request

2012-11-03 Thread Éric Araujo
Éric Araujo added the comment: Senthil, any objections on committing this? -- ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue12614] Allow to explicitly set the method of urllib.request.Request

2011-07-27 Thread Éric Araujo
Éric Araujo added the comment: Apart from one change (testing for “self._request is not None”), the patch is ready. Thanks! -- ___ Python tracker ___ _

[issue12614] Allow to explicitly set the method of urllib.request.Request

2011-07-27 Thread Éric Araujo
Changes by Éric Araujo : Added file: http://bugs.python.org/file22776/fbf2f56d225f.diff ___ Python tracker ___ ___ Python-bugs-list mailing li

[issue12614] Allow to explicitly set the method of urllib.request.Request

2011-07-26 Thread Miki Tebeka
Miki Tebeka added the comment: My bad about the hg location, it was a private repo (for some reason this is the bitbucket default). I tried to remove the other repos, but for some reason this doesn't work. The right one is https://bitbucket.org/tebeka/cpython#request-method -- _

[issue12614] Allow to explicitly set the method of urllib.request.Request

2011-07-26 Thread Miki Tebeka
Changes by Miki Tebeka : -- hgrepos: +49 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org

[issue12614] Allow to explicitly set the method of urllib.request.Request

2011-07-26 Thread Miki Tebeka
Changes by Miki Tebeka : -- hgrepos: +48 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org

[issue12614] Allow to explicitly set the method of urllib.request.Request

2011-07-26 Thread Éric Araujo
Éric Araujo added the comment: Roundup can’t connect with SSH, it needs a public HTTP URI. The one I added requires authentication, can you fix that? -- ___ Python tracker ___

[issue12614] Allow to explicitly set the method of urllib.request.Request

2011-07-26 Thread Éric Araujo
Changes by Éric Araujo : -- hgrepos: +47 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org

[issue12614] Allow to explicitly set the method of urllib.request.Request

2011-07-25 Thread Miki Tebeka
Changes by Miki Tebeka : -- hgrepos: +46 Added file: http://bugs.python.org/file22753/request-method.diff ___ Python tracker ___ ___ P

[issue12614] Allow to explicitly set the method of urllib.request.Request

2011-07-22 Thread Éric Araujo
Éric Araujo added the comment: Looks good. I have made one comment on Rietveld. -- assignee: -> orsenthil nosy: +eric.araujo, orsenthil ___ Python tracker ___

[issue12614] Allow to explicitly set the method of urllib.request.Request

2011-07-22 Thread Petri Lehtinen
Changes by Petri Lehtinen : -- keywords: +needs review stage: -> patch review ___ Python tracker ___ ___ Python-bugs-list mailing lis

[issue12614] Allow to explicitly set the method of urllib.request.Request

2011-07-22 Thread Santoso Wijaya
Changes by Santoso Wijaya : -- versions: +Python 3.3 -Python 3.2 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue12614] Allow to explicitly set the method of urllib.request.Request

2011-07-22 Thread Miki Tebeka
Changes by Miki Tebeka : -- components: +Library (Lib) ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://m

[issue12614] Allow to explicitly set the method of urllib.request.Request

2011-07-22 Thread Miki Tebeka
Changes by Miki Tebeka : -- type: -> feature request ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://ma

[issue12614] Allow to explicitly set the method of urllib.request.Request

2011-07-22 Thread Miki Tebeka
New submission from Miki Tebeka : Currently urllib.request.Request decides if it's a "GET" or "POST" by the presence of data. However sometimes you want to do an "POST" request without data (in my case, it Crucible REST API). Or provide another method. The attached patched added a `method` arg