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

Commits on Mar 9, 2026

  1. Migrate codebase from Python 2 to Python 3

    - Replace urllib2/urlparse/StringIO with urllib.request/urllib.parse/io
    - Replace unicode/basestring/long with str/bytes/int
    - Fix except syntax (comma to as)
    - Replace imp.load_source with importlib.util
    - Replace HTMLParser().unescape with html.unescape
    - Fix string.maketrans/translate for Python 3
    - Fix integer division (/ to //) for scoring consistency
    - Fix regex \p{} Unicode properties (unsupported in re module)
    - Update etree.tostring to return str instead of bytes
    - Fix relative imports in test modules
    - Update beautifulsoup to beautifulsoup4
    - Update test infrastructure for Python 3 compatibility
    - Update .travis.yml for Python 3.8-3.12
    Xavier Grangier committed Mar 9, 2026
    Configuration menu
    Copy the full SHA
    1961239 View commit details
    Browse the repository at this point in the history

Commits on Mar 10, 2026

  1. Merge pull request grangier#292 from grangier/feature/py3

    Migrate codebase from Python 2 to Python 3
    grangier authored Mar 10, 2026
    Configuration menu
    Copy the full SHA
    a8ee5fc View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d8476fa View commit details
    Browse the repository at this point in the history
Loading