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

bpo-26544: Fixed implementation of platform.libc_ver(). #7684

Merged
merged 4 commits into from
Jul 9, 2018

Conversation

serhiy-storchaka
Copy link
Member

@serhiy-storchaka serhiy-storchaka commented Jun 13, 2018

Lib/platform.py Outdated
if not m:
break
eof = True
binary = binary[max(pos, len(binary) - 1000):] + chunk
Copy link
Member

@zhangyangyu zhangyangyu Jun 19, 2018

Choose a reason for hiding this comment

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

IIUC, the added logic is to fix the bug the version info might just appear around the boundary of chunks. But according to the documentation and comment, it seems the original intention is to let the user choose an appropriate chunk size. If we change the logic, the parameter chunksize looks somewhat unnecessary.

BTW, the default argument of chunksize in doc conflicts with implementation. (2048 vs 16384)

Copy link
Member Author

Choose a reason for hiding this comment

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

What are the documentation and comment about the original intention? I can't find anything.

Copy link
Member

Choose a reason for hiding this comment

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

I just infer from it. Otherwise I don't understand what's chunksize for. Anyway, it doesn't matter. I just think after this change, exposing chunksize seems somewhat superfluous.

Lib/platform.py Outdated
if not m:
break
eof = True
binary = binary[max(pos, len(binary) - 1000):] + chunk
Copy link
Member

Choose a reason for hiding this comment

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

Maybe it's better to put this line in an else block. No meaning to concatenate an empty bytes.

Copy link
Member

@zhangyangyu zhangyangyu left a comment

Choose a reason for hiding this comment

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

LGTM. Only one tiny suggestion.

@serhiy-storchaka
Copy link
Member Author

Thank you for you review and suggestion @zhangyangyu! It has helped me to rewrite the code in more efficient and clear way.

@serhiy-storchaka serhiy-storchaka merged commit 2a9b8ba into python:master Jul 9, 2018
@miss-islington
Copy link
Contributor

Thanks @serhiy-storchaka for the PR 🌮🎉.. I'm working now to backport this PR to: 2.7, 3.6, 3.7.
🐍🍒⛏🤖

@serhiy-storchaka serhiy-storchaka deleted the platform-libc_ver branch July 9, 2018 08:47
@miss-islington
Copy link
Contributor

Sorry, @serhiy-storchaka, I could not cleanly backport this to 3.7 due to a conflict.
Please backport using cherry_picker on command line.
cherry_picker 2a9b8babf0d09946ebebfdb2931cc0d3db5a1d3d 3.7

@miss-islington
Copy link
Contributor

Sorry, @serhiy-storchaka, I could not cleanly backport this to 2.7 due to a conflict.
Please backport using cherry_picker on command line.
cherry_picker 2a9b8babf0d09946ebebfdb2931cc0d3db5a1d3d 2.7

@miss-islington
Copy link
Contributor

Sorry, @serhiy-storchaka, I could not cleanly backport this to 3.6 due to a conflict.
Please backport using cherry_picker on command line.
cherry_picker 2a9b8babf0d09946ebebfdb2931cc0d3db5a1d3d 3.6

serhiy-storchaka added a commit to serhiy-storchaka/cpython that referenced this pull request Jul 9, 2018
…GH-7684).

(cherry picked from commit 2a9b8ba)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
@bedevere-bot
Copy link

GH-8193 is a backport of this pull request to the 3.7 branch.

serhiy-storchaka added a commit that referenced this pull request Jul 9, 2018
miss-islington pushed a commit to miss-islington/cpython that referenced this pull request Jul 9, 2018
…GH-7684). (pythonGH-8193)

(cherry picked from commit 2a9b8ba)
(cherry picked from commit 7c43b80)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
serhiy-storchaka added a commit to serhiy-storchaka/cpython that referenced this pull request Jul 9, 2018
…ythonGH-7684). (pythonGH-8193)

(cherry picked from commit 2a9b8ba).
(cherry picked from commit 7c43b80)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
serhiy-storchaka pushed a commit that referenced this pull request Jul 9, 2018
serhiy-storchaka added a commit that referenced this pull request Jul 9, 2018
@bedevere-bot
Copy link

GH-8196 is a backport of this pull request to the 2.7 branch.

@bedevere-bot
Copy link

GH-8195 is a backport of this pull request to the 3.6 branch.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
type-bug An unexpected behavior, bug, or error
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants