Skip to content

tests for python3 - what about to remove useless dependence on 'past.builtins' ? #87

@vmurashev

Description

@vmurashev

Rationale:
'past.builtins' is not a part of stock python modules, as result it's difficult to run boost-python tests in limited environments (like Android) at the same time it is the one line only to fix it -
Code like
if (sys.version_info.major >= 3):
from past.builtins import long

Can be easily replaced with:
if (sys.version_info.major >= 3):
long = int

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions