Skip to content
Snippets Groups Projects
Select Git revision
  • selene/master
  • master default protected
  • simon/matlab
  • simon/dev
  • feat/zenodo
  • simon/git
  • simon/release
  • simon/gitlabci
  • simon/fix_tests
  • simon/concurrent
  • simon/descriptor
  • simon/auto_commit
  • ran_dev
  • feature/qcodes_plotter
  • hannah_dev_default
  • simon/stylesheets
  • hannah/dev
  • simon/vna
  • feature/vna
  • paul_dev
  • v2025.05.1 protected
  • v2025.03.1 protected
  • v2025.2.1 protected
  • v2024.11.1 protected
  • initial_zenodo_release
  • v2024.7.1 protected
  • v2024.2.20 protected
  • v2023.7.1 protected
28 results

__init__.py

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    __init__.py 267 B
    """This is the new name of the qutil module which is just an alias to qutil for backwards compatibility reasons."""
    import sys
    import qutil
    
    from qutil import *
    
    __all__ = qutil.__all__
    __version__ = qutil.__version__
    sys.modules[__name__] = qutil
    
    del qutil
    del sys