[issue3931] codecs.charmap_build is untested and undocumented

2019-03-15 Thread Mark Lawrence
Change by Mark Lawrence : -- nosy: -BreamoreBoy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue3931] codecs.charmap_build is untested and undocumented

2015-03-01 Thread Mark Lawrence
Mark Lawrence added the comment: I do not see much purpose in documenting and testing this one function alone. I think that all functions in _codecsmodule.c should be looked at to see if they are private or public, but I'm certainly not volunteering to do it. -- _

[issue3931] codecs.charmap_build is untested and undocumented

2014-06-12 Thread Josh Rosenberg
Josh Rosenberg added the comment: I've found it rather ugly to even understand from the lack of code comments for the C level API it's wrapping. If nothing else, comments explaining the usage and purpose might be helpful. -- nosy: +josh.rosenberg __

[issue3931] codecs.charmap_build is untested and undocumented

2014-06-12 Thread Mark Lawrence
Mark Lawrence added the comment: msg120987 states the opposite to msg112747 so what do we do with this issue? -- nosy: +BreamoreBoy versions: +Python 3.4, Python 3.5 -Python 3.2, Python 3.3 ___ Python tracker __

[issue3931] codecs.charmap_build is untested and undocumented

2012-05-17 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- versions: +Python 2.7, Python 3.2 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe

[issue3931] codecs.charmap_build is untested and undocumented

2012-05-17 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- versions: +Python 3.3 -Python 2.7, Python 3.2 ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue3931] codecs.charmap_build is untested and undocumented

2010-11-11 Thread Éric Araujo
Éric Araujo added the comment: I see charmap_build used in encodings too, so it may be useful to make it officially public for the use of third-party encodings. -- ___ Python tracker __

[issue3931] codecs.charmap_build is untested and undocumented

2010-08-03 Thread Terry J. Reedy
Terry J. Reedy added the comment: There are numerous undocumented implementation objects that are either private and probably should start with _ but do not, or are semi-private and perhaps left public for the expert user willing to read code. But, being undocumented, it is hard to tell. code

[issue3931] codecs.charmap_build is untested and undocumented

2008-10-20 Thread Marc-Andre Lemburg
Marc-Andre Lemburg <[EMAIL PROTECTED]> added the comment: AFAIR, this code was added by Martin as optimization. The function is a direct interface to PyUnicode_BuildEncodingMap() which builds either a dictionary or EncodingMap object for use by the charmap codec. It is primarily used by the gen

[issue3931] codecs.charmap_build is untested and undocumented

2008-10-20 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- nosy: +lemburg ___ Python tracker <[EMAIL PROTECTED]> ___ ___ Python-bugs-list mail

[issue3931] codecs.charmap_build is untested and undocumented

2008-09-22 Thread Maciek Fijalkowski
New submission from Maciek Fijalkowski <[EMAIL PROTECTED]>: Although it doesn't start with _ and is definitely necessary as codecs call it. -- components: Library (Lib) messages: 73569 nosy: fijal severity: normal status: open title: codecs.charmap_build is untested and undocumented type