This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author tebeka
Recipients tebeka
Date 2011-07-22.17:51:25
SpamBayes Score 0.00060197344
Marked as misclassified No
Message-id <1311357087.35.0.723496130819.issue12614@psf.upfronthosting.co.za>
In-reply-to
Content
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` argument to Request __init__.
History
Date User Action Args
2011-07-22 17:51:27tebekasetrecipients: + tebeka
2011-07-22 17:51:27tebekasetmessageid: <1311357087.35.0.723496130819.issue12614@psf.upfronthosting.co.za>
2011-07-22 17:51:26tebekalinkissue12614 messages
2011-07-22 17:51:26tebekacreate