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 paul.moore
Recipients dmi.baranov, doerwalter, ezio.melotti, lemburg, ncoghlan, paul.moore, vstinner
Date 2013-05-02.15:43:58
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <CACac1F_gngz6FGPB_rBbS=0rCFMEam-evtQWNem1bvhb5_Us3Q@mail.gmail.com>
In-reply-to <1367508950.46.0.570113355298.issue17878@psf.upfronthosting.co.za>
Content
On 2 May 2013 16:35, Dmi Baranov <report@bugs.python.org> wrote:

> Paul, result as iterable of CodecInfo objects is gives much more
> flexibility than the names of codecs (whats if you will have a few codecs
> with the same name in different SearchObjects?)

Works for me. My usage would be

def list_supported_codecs():
  for codec in codecs.registered_codecs():
    print(codec.name)
History
Date User Action Args
2013-05-02 15:43:58paul.mooresetrecipients: + paul.moore, lemburg, doerwalter, ncoghlan, vstinner, ezio.melotti, dmi.baranov
2013-05-02 15:43:58paul.moorelinkissue17878 messages
2013-05-02 15:43:58paul.moorecreate