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

Fix regression in table outputter due to unicode types #47674

Merged
merged 3 commits into from
May 16, 2018

Commits on May 16, 2018

  1. Fix regression in table outputter due to unicode strings

    This ensures that we use the proper justification functions from the
    unicode type on Python 2, and that we also normalize the input so that
    we are guaranteed that all strings are unicode types.
    terminalmage committed May 16, 2018
    Configuration menu
    Copy the full SHA
    907d182 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d729656 View commit details
    Browse the repository at this point in the history
  3. Fix Python 3 incompatibility in table outputter

    `map(None, some_iterable)` is not valid usage in Python 3. This fixes
    that incompatiblity in a way that works in both Python 2 and 3.
    terminalmage committed May 16, 2018
    Configuration menu
    Copy the full SHA
    43e3dcd View commit details
    Browse the repository at this point in the history