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.

classification
Title: Document UnicodeError access functions
Type: Stage: patch review
Components: Documentation Versions:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: docs@python Nosy List: docs@python, eli.bendersky, georg.brandl
Priority: normal Keywords: patch

Created on 2010-11-20 13:47 by georg.brandl, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
issue10468.1.patch eli.bendersky, 2010-11-21 14:51
Messages (4)
msg121641 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2010-11-20 13:47
There are a couple of functions for accessing UnicodeError subclass properties that are needed e.g. in codec error handlers.  They should be documented in exceptions.rst.
msg121642 - (view) Author: Eli Bendersky (eli.bendersky) * (Python committer) Date: 2010-11-20 13:49
From IRC:

  the PyUnicode*Error_Foo access functions are not documented
  they are in exceptions.c / pyerrors.h
msg121934 - (view) Author: Eli Bendersky (eli.bendersky) * (Python committer) Date: 2010-11-21 14:51
Attaching a patch for Doc/c-api/exceptions.rst

Added a new section named "Unicode exceptions", and documented the relevant functions from Include/pyerrors.h
msg122201 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2010-11-23 07:54
Thanks, reviewed and applied in r86705.
History
Date User Action Args
2022-04-11 14:57:09adminsetgithub: 54677
2010-11-23 07:54:33georg.brandlsetstatus: open -> closed
resolution: fixed
messages: + msg122201
2010-11-21 15:11:46eli.benderskysetstage: patch review
2010-11-21 14:51:54eli.benderskysetfiles: + issue10468.1.patch
keywords: + patch
messages: + msg121934
2010-11-20 13:49:13eli.benderskysetmessages: + msg121642
2010-11-20 13:48:11eli.benderskysetnosy: + eli.bendersky
2010-11-20 13:47:40georg.brandlcreate