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 serhiy.storchaka
Recipients lukasz.langa, mickeyju, serhiy.storchaka
Date 2012-05-28.10:59:28
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1338202769.38.0.362801305788.issue13518@psf.upfronthosting.co.za>
In-reply-to
Content
Mickey, you can wrap file-like object returned by urlopen with io.TextIOWrapper.

  config = configparser.RawConfigParser()
  config.read_file(io.TextIOWrapper(urlopen(path_config), encoding='utf-8'))

Because there is no bug and new feature is not needed, I believe that this issue can be closed.
History
Date User Action Args
2012-05-28 10:59:29serhiy.storchakasetrecipients: + serhiy.storchaka, lukasz.langa, mickeyju
2012-05-28 10:59:29serhiy.storchakasetmessageid: <1338202769.38.0.362801305788.issue13518@psf.upfronthosting.co.za>
2012-05-28 10:59:28serhiy.storchakalinkissue13518 messages
2012-05-28 10:59:28serhiy.storchakacreate