-
-
Notifications
You must be signed in to change notification settings - Fork 5.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[RFC:] Docstring for Unicode module #52761
Conversation
Signed-off-by: 11happy <soni5happy@gmail.com>
Signed-off-by: 11happy <soni5happy@gmail.com>
Signed-off-by: 11happy <soni5happy@gmail.com>
Requesting review @stevengj . |
This is a nice addition to the manual, but it's not a docstring. A docstring is an attached to the In particular, you would edit """
The `Unicode` module provides essential functionality for managing `Unicode` characters and strings.
It includes validation, category determination, normalization, case transformation, and grapheme segmentation,
enabling effective `Unicode` data handling.
"""
module Unicode |
Signed-off-by: 11happy <soni5happy@gmail.com>
Signed-off-by: 11happy <soni5happy@gmail.com>
With this PR, there is a duplication of information on the docs page: The exact same sentence is first shown as a text, and then as the docstring of the |
I think I can change the Docs one or should I remove it? |
I don't think there is an easy way to write the sentence only once, so you should just leave it as-is. |
Signed-off-by: 11happy <soni5happy@gmail.com>
Part of #52725.
Thank you