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

Python 3 compatibility #791

Open
wants to merge 2 commits into
base: 4.x
Choose a base branch
from
Open

Python 3 compatibility #791

wants to merge 2 commits into from

Commits on Aug 13, 2020

  1. fix: Bad whitespace - there was a space before 'class' on several lines.

    Since python is a whitespace sensitive language, misplaced whitespace
    can make it unparseable.  This commit fixes several places where there
    was bad whitespace.
    ckaran committed Aug 13, 2020
    Configuration menu
    Copy the full SHA
    a3942c3 View commit details
    Browse the repository at this point in the history
  2. feat: Ran futurize over all python code.

    [futurize](https://www.python-future.org/futurize.html) is a tool to
    rewrite python code so that it is compatible with both python 2 and python 3.
    I have visually inspected the changes and believe all of them to be correct.
    ckaran committed Aug 13, 2020
    Configuration menu
    Copy the full SHA
    4d28e53 View commit details
    Browse the repository at this point in the history