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

DM-7261: Port to Python 3 #3

Merged
merged 8 commits into from
Aug 20, 2016
Merged

DM-7261: Port to Python 3 #3

merged 8 commits into from
Aug 20, 2016

Commits on Aug 17, 2016

  1. Run autopep8 on Python code

    r-owen committed Aug 17, 2016
    Configuration menu
    Copy the full SHA
    083d180 View commit details
    Browse the repository at this point in the history

Commits on Aug 20, 2016

  1. Update .gitignore

    Add _build.* doc/xml/ and tests/.cache to .gitignore
    r-owen committed Aug 20, 2016
    Configuration menu
    Copy the full SHA
    0edcd0b View commit details
    Browse the repository at this point in the history
  2. Run futurize -1 -w .

    r-owen committed Aug 20, 2016
    Configuration menu
    Copy the full SHA
    5850a14 View commit details
    Browse the repository at this point in the history
  3. Run futurize -2 -x division_safe -w .

    Also remove one obsolete "from __future__ import"
    that was confusing futurize
    r-owen committed Aug 20, 2016
    Configuration menu
    Copy the full SHA
    ea3d370 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    fb68e4b View commit details
    Browse the repository at this point in the history
  5. Standardize imports

    Remove obsolete "from __future__ import with_statement"
    Put imports into standard order and grouping
    Remove unused imports
    Change "import numpy" to "import numpy as np"
    r-owen committed Aug 20, 2016
    Configuration menu
    Copy the full SHA
    0190ec3 View commit details
    Browse the repository at this point in the history
  6. Fix wrapping and indentation

    Fixed a few lines that were too long or improperly indented
    r-owen committed Aug 20, 2016
    Configuration menu
    Copy the full SHA
    008459f View commit details
    Browse the repository at this point in the history
  7. Change "== None" to "is None"

    r-owen committed Aug 20, 2016
    Configuration menu
    Copy the full SHA
    9bcb9e2 View commit details
    Browse the repository at this point in the history