[issue10192] 'from urllib.parse import *' does not import urlencode function

2010-10-25 Thread Senthil Kumaran
Senthil Kumaran added the comment: Fixed in revision 85837. -- assignee: -> orsenthil nosy: +orsenthil resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker ___

[issue10192] 'from urllib.parse import *' does not import urlencode function

2010-10-25 Thread hhas
New submission from hhas : Problem: The following statement fails to import the public urlencode function into the current namespace: from urllib.parse import * Solution: Add 'urlencode' to urllib.parse.__all__. -- components: Library (Lib) messages: 119558 nosy: hhas priority: