Skip to content
This repository was archived by the owner on Oct 28, 2025. It is now read-only.
This repository was archived by the owner on Oct 28, 2025. It is now read-only.

Lack of support for Python3 #2

@kszys

Description

@kszys

It seems that ibanlib does not support Python3 at the moment. There are a few issues I managed to identify:

  • importing ConfigParser module, which has been renamed to configparser in Python3. This only needs to be changed in a couple of places.
  • string.maketrans does not exist in Python3 - and str.translate only takes 1 argument, so (allchars, ' ') needs to be replaced by (str.maketrans('','',' '))
  • there is no longer long type in Python3 - needs to be replaced by int

If needed, I can create a pull request.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions