Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: benjaminp/six
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.16.0
Choose a base ref
...
head repository: benjaminp/six
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1.17.0
Choose a head ref
  • 16 commits
  • 13 files changed
  • 5 contributors

Commits on May 5, 2021

  1. Configuration menu
    Copy the full SHA
    b620447 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3974f0c View commit details
    Browse the repository at this point in the history

Commits on Nov 21, 2021

  1. Configuration menu
    Copy the full SHA
    ee03e4a View commit details
    Browse the repository at this point in the history
  2. Fix UserDict move in Python2 (#365)

    instances of UserDict.UserDict are not iterable
    but instances of collections.UserDict are iterable
    bxsx authored Nov 21, 2021
    Configuration menu
    Copy the full SHA
    7783c9e View commit details
    Browse the repository at this point in the history
  3. Changelog for #281.

    benjaminp committed Nov 21, 2021
    Configuration menu
    Copy the full SHA
    45f1a23 View commit details
    Browse the repository at this point in the history

Commits on Jul 26, 2022

  1. Delete pep8ignore and flakes-ignore.

    Fixes #351.
    benjaminp committed Jul 26, 2022
    1 Configuration menu
    Copy the full SHA
    3b7efbc View commit details
    Browse the repository at this point in the history

Commits on Oct 21, 2023

  1. 1 Configuration menu
    Copy the full SHA
    02c3bca View commit details
    Browse the repository at this point in the history

Commits on Mar 27, 2024

  1. 1 Configuration menu
    Copy the full SHA
    c1b416f View commit details
    Browse the repository at this point in the history

Commits on Dec 1, 2024

  1. Python 3.14 removed the URLopener and FancyURLopener classes from url…

    …lib.request (#388)
    
    python/cpython#84850
    
    > Remove URLopener and FancyURLopener classes from urllib.request.
    > They had previously raised DeprecationWarning since Python 3.3.
    
    The test failures were:
    
        __________________ test_move_items_urllib_request[URLopener] ___________________
    
        item_name = 'URLopener'
    
            @pytest.mark.parametrize("item_name",
                                      [item.name for item in six._urllib_request_moved_attributes])
            def test_move_items_urllib_request(item_name):
                """Ensure that everything loads correctly."""
                assert item_name in dir(six.moves.urllib.request)
        >       getattr(six.moves.urllib.request, item_name)
        E       AttributeError: module 'six.moves.urllib.request' has no attribute 'URLopener'
    
        test_six.py:170: AttributeError
        ________________ test_move_items_urllib_request[FancyURLopener] ________________
    
        item_name = 'FancyURLopener'
    
            @pytest.mark.parametrize("item_name",
                                      [item.name for item in six._urllib_request_moved_attributes])
            def test_move_items_urllib_request(item_name):
                """Ensure that everything loads correctly."""
                assert item_name in dir(six.moves.urllib.request)
        >       getattr(six.moves.urllib.request, item_name)
        E       AttributeError: module 'six.moves.urllib.request' has no attribute 'FancyURLopener'
    
        test_six.py:170: AttributeError
    hroncok authored Dec 1, 2024
    Configuration menu
    Copy the full SHA
    9a05aab View commit details
    Browse the repository at this point in the history
  2. Add a changelog for #314.

    benjaminp committed Dec 1, 2024
    Configuration menu
    Copy the full SHA
    ceddaf2 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    06430b9 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    86f89c5 View commit details
    Browse the repository at this point in the history
  5. Update copyright years.

    benjaminp committed Dec 1, 2024
    Configuration menu
    Copy the full SHA
    8cb688f View commit details
    Browse the repository at this point in the history

Commits on Dec 3, 2024

  1. Configuration menu
    Copy the full SHA
    dd7940e View commit details
    Browse the repository at this point in the history
  2. Expunge travis.

    benjaminp committed Dec 3, 2024
    Configuration menu
    Copy the full SHA
    40d248e View commit details
    Browse the repository at this point in the history
  3. six 1.17.0

    benjaminp committed Dec 3, 2024
    Configuration menu
    Copy the full SHA
    ebd9b3a View commit details
    Browse the repository at this point in the history
Loading