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: rubys/feedvalidator
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: rubys/feedvalidator
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: py3
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 8 commits
  • 56 files changed
  • 2 contributors

Commits on Jun 29, 2021

  1. Run 2to3

    mnot committed Jun 29, 2021
    Configuration menu
    Copy the full SHA
    ad976c6 View commit details
    Browse the repository at this point in the history
  2. #!/usr/bin/env python3

    mnot committed Jun 29, 2021
    Configuration menu
    Copy the full SHA
    eecbddc View commit details
    Browse the repository at this point in the history
  3. rfc822 -> email.utils

    mnot committed Jun 29, 2021
    Configuration menu
    Copy the full SHA
    918b6ab View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    45f022b View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    64d7d7c View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    c867090 View commit details
    Browse the repository at this point in the history

Commits on Jul 19, 2021

  1. Encoding adjustments

    mnot committed Jul 19, 2021
    Configuration menu
    Copy the full SHA
    7a64a1a View commit details
    Browse the repository at this point in the history
  2. fix MRO errors

    Apparently in python3 a class definition is no longer allowed to inherit from
    a common base class as well as another class that inherits from that same
    common base:
    
      class A
      class B(A)
      class C(A,B)
    
    The fix is to remove the redundant common base class from the new definition:
    
      class C(B)
    rubys committed Jul 19, 2021
    Configuration menu
    Copy the full SHA
    82bd347 View commit details
    Browse the repository at this point in the history
Loading