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

Don't use deprecated 'U' flag to read manifest #623

Merged
merged 1 commit into from Jul 1, 2016
Merged

Don't use deprecated 'U' flag to read manifest #623

merged 1 commit into from Jul 1, 2016

Commits on Jun 29, 2016

  1. Don't use deprecated 'U' flag to read manifest

    The universal newlines mode ('U' flag) is deprecated since Python
    3.4. It only replaces "\r\n" with "\n", but it doesn't split lines at
    "\r" (Mac newline). In practice, the flag was useless, the
    sdist.read_manifest() method already uses line.strip() and so removes
    newline characters.
    vstinner committed Jun 29, 2016
    Copy the full SHA
    4720c48 View commit details
    Browse the repository at this point in the history