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

Sync Fork from Upstream Repo #196

Merged
merged 3 commits into from Jan 21, 2020
Merged

Sync Fork from Upstream Repo #196

merged 3 commits into from Jan 21, 2020

Commits on Jan 21, 2020

  1. bpo-39389: gzip: fix compression level metadata (GH-18077)

    As described in RFC 1952, section 2.3.1, the XFL (eXtra FLags) byte of a
    gzip member header should indicate whether the DEFLATE algorithm was
    tuned for speed or compression ratio. Prior to this patch, archives
    emitted by the `gzip` module always indicated maximum compression.
    wchargin authored and serhiy-storchaka committed Jan 21, 2020
    Copy the full SHA
    eab3b3f View commit details
    Browse the repository at this point in the history
  2. bpo-33387: Fix compiler warning in frame_block_unwind() (GH-18099)

    Replace int with intptr_t to fix the warning:
    
        objects\frameobject.c(341): warning C4244: 'initializing':
        conversion from '__int64' to 'int', possible loss of data
    vstinner committed Jan 21, 2020
    Copy the full SHA
    629023c View commit details
    Browse the repository at this point in the history
  3. Move test_math tests (GH-18098)

    testPerm() and testComb() belong to MathTests, not to IsCloseTests().
    
    test_nextafter() and test_ulp() now use assertIsNaN().
    vstinner committed Jan 21, 2020
    Copy the full SHA
    59e2d26 View commit details
    Browse the repository at this point in the history