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

Subclassing the bool from long instead int object. #1424

Open
wants to merge 6 commits into
base: py3
Choose a base branch
from

Commits on Jul 11, 2017

  1. Make the bool object become subclass of long object.

    In Python 2, the bool object just a int object. In Python 3, the bool object become long object. So change the bool object to the subclass of long object, prepare for other Python 3 updates.
    Daetalus committed Jul 11, 2017
    Configuration menu
    Copy the full SHA
    a9e262d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d73dc8f View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    bce623d View commit details
    Browse the repository at this point in the history
  4. Disable all python tests for now.

    If any tests ready to python 3, we need to add 'py3ready' flag in the beginning of the file
    Daetalus committed Jul 11, 2017
    Configuration menu
    Copy the full SHA
    0eddc7b View commit details
    Browse the repository at this point in the history
  5. use cmake 3 to build pyston.

    cmake 2 can not build target Ninja.
    Daetalus committed Jul 11, 2017
    Configuration menu
    Copy the full SHA
    08d6932 View commit details
    Browse the repository at this point in the history
  6. add test for long based bool

    Daetalus committed Jul 11, 2017
    Configuration menu
    Copy the full SHA
    d491531 View commit details
    Browse the repository at this point in the history