Skip to content
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

Merged
merged 1 commit into from
Mar 31, 2021

Conversation

berni44
Copy link
Contributor

@berni44 berni44 commented Mar 25, 2021

No description provided.

@dlang-bot
Copy link
Contributor

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 verify that your PR follows this checklist:

  • My PR is fully covered with tests (you can see the coverage diff by visiting the details link of the codecov check)
  • My PR is as minimal as possible (smaller, focused PRs are easier to review than big ones)
  • I have provided a detailed rationale explaining my changes
  • New or modified functions have Ddoc comments (with Params: and Returns:)

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

Auto-close Bugzilla Severity Description
15888 normal std.format should not produce deprecated hexstrings

Testing this PR locally

If you don't have a local development environment setup, you can use Digger to test this PR:

dub run digger -- build "master + phobos#7918"

Copy link
Contributor

@aG0aep6G aG0aep6G left a 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. */
}

@aG0aep6G
Copy link
Contributor

@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.

@berni44
Copy link
Contributor Author

berni44 commented Mar 25, 2021

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. */
}

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...)

@aG0aep6G
Copy link
Contributor

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 [cast(dchar) 0xFFFFFFF, cast(dchar) 0x42] or cast(dchar[]) [0xFFFFFFF, 0x42]? I'm not sure if there's a meaningful difference between the two.

Just throwing an exception could also be an option.

@berni44
Copy link
Contributor Author

berni44 commented Mar 25, 2021

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 [cast(dchar) 0xFFFFFFF, cast(dchar) 0x42] or cast(dchar[]) [0xFFFFFFF, 0x42]? I'm not sure if there's a meaningful difference between the two.

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...

@RazvanN7 RazvanN7 merged commit ee02ddd into dlang:master Mar 31, 2021
@berni44 berni44 deleted the issue_15888 branch April 28, 2021 17:41
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants