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

closes bpo-45479: Degunkify Py_UniversalNewlineFgets. #28965

Merged
merged 1 commit into from
Oct 15, 2021
Merged

Conversation

benjaminp
Copy link
Contributor

@benjaminp benjaminp commented Oct 15, 2021

Remove dead variables and control flow.

https://bugs.python.org/issue45479

@benjaminp benjaminp changed the title Degunkify Py_UniversalNewlineFgets. closes bpo-45479: Degunkify Py_UniversalNewlineFgets. Oct 15, 2021
Remove dead variables and control flow.
while (--n > 0 && (c = GETC(stream)) != EOF ) {
if (skipnextlf ) {
if (skipnextlf) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This block never executes. skipnextlf is only set if c == '\r' in the next block, in which case c is set to '\n', and the execution flow breaks out of the loop via if (c == '\n') break. The value of skipnextlf is handled after the loop. The loop can be simplified as follows:

    while (--n > 0 && (c = GETC(stream)) != EOF) {
        if (c == '\r') {
            /* Translate \r to \n, and skip an adjacent \n, if any. */
            skipnextlf = 1;
            c = '\n';
        }
        *p++ = c;
        if (c == '\n') {
            break;
        }
    }

benjaminp added a commit that referenced this pull request Oct 15, 2021
ShivnarenSrinivasan pushed a commit to ShivnarenSrinivasan/cpython that referenced this pull request Oct 15, 2021
ShivnarenSrinivasan pushed a commit to ShivnarenSrinivasan/cpython that referenced this pull request Oct 15, 2021
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.

4 participants