-
-
Notifications
You must be signed in to change notification settings - Fork 706
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
Fix Issue 15888 - std.format should not produce deprecated hexstrings #7918
Conversation
|
Thanks for your pull request and interest in making D better, @berni44! We are looking forward to reviewing it, and you should be hearing from a maintainer soon.
Please see CONTRIBUTING.md for more information. If you have addressed all reviews or aren't sure how to proceed, don't hesitate to ping us with a simple comment. Bugzilla references
Testing this PR locallyIf you don't have a local development environment setup, you can use Digger to test this PR: dub run digger -- build "master + phobos#7918" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Printing "\uXYZW" for a wchar 0xXYZW is not correct. "\u...." refers to a code point. A wchar is a code unit.
Example:
void main()
{
import std.stdio;
writeln(cast(wchar[]) [0xD83D, 0xDE08]); /* prints "😈" */
writeln("\uD83D\uDE08"); /* Doesn't even compile. */
}|
@thewilsonator, please don't merge this yet. And in general, please, please, please give others a chance to look at a PR before merging it. |
So what is it supposed to write? IMHO the examples you gave in the issue aren't valid either. (One is still a hexstring, while the other one doesn't compile...) |
How about Just throwing an exception could also be an option. |
OK, let's try this one. Thanks for that idea and thanks for noting in time, that my first try was a bad idea... |
No description provided.