Login
Log in using an SSO provider:
Fedora Account System
Red Hat Associate
Red Hat Customer
Login using a Red Hat Bugzilla account
Forgot Password
Create an Account
Red Hat Bugzilla – Attachment 1623343 Details for
Bug 1759352
[abrt] git-cola: module(): __init__.py:178:<module>:qtpy.PythonQtError: No Qt bindings could be found
Home
New
Search
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh90 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
[?]
This site requires JavaScript to be enabled to function correctly, please enable it.
File: backtrace
backtrace (text/plain), 9.68 KB, created by
wqhj studios
on 2019-10-07 22:21:52 UTC
(
hide
)
Description:
File: backtrace
Filename:
MIME Type:
Creator:
wqhj studios
Created:
2019-10-07 22:21:52 UTC
Size:
9.68 KB
patch
obsolete
>__init__.py:178:<module>:qtpy.PythonQtError: No Qt bindings could be found > >Traceback (most recent call last): > File "/usr/share/git-cola/lib/qtpy/__init__.py", line 172, in <module> > from PySide import __version__ as PYSIDE_VERSION # analysis:ignore >ModuleNotFoundError: No module named 'PySide' > >During handling of the above exception, another exception occurred: > >Traceback (most recent call last): > File "/usr/bin/git-cola", line 53, in <module> > from cola.main import main > File "/usr/share/git-cola/lib/cola/main.py", line 6, in <module> > from . import app > File "/usr/share/git-cola/lib/cola/app.py", line 15, in <module> > from qtpy import QtCore > File "/usr/share/git-cola/lib/qtpy/__init__.py", line 178, in <module> > raise PythonQtError('No Qt bindings could be found') >qtpy.PythonQtError: No Qt bindings could be found > >Local variables in innermost frame: >__name__: 'qtpy' >__doc__: "\n**QtPy** is a shim over the various Python Qt bindings. It is used to write\nQt binding indenpendent libraries or applications.\n\nIf one of the APIs has already been imported, then it will be used.\n\nOtherwise, the shim will automatically select the first available API (PyQt5,\nPySide2, PyQt4 and finally PySide); in that case, you can force the use of one\nspecific bindings (e.g. if your application is using one specific bindings and\nyou need to use library that use QtPy) by setting up the ``QT_API`` environment\nvariable.\n\nPyQt5\n=====\n\nFor PyQt5, you don't have to set anything as it will be used automatically::\n\n >>> from qtpy import QtGui, QtWidgets, QtCore\n >>> print(QtWidgets.QWidget)\n\n\nPySide2\n======\n\nSet the QT_API environment variable to 'pyside2' before importing other\npackages::\n\n >>> import os\n >>> os.environ['QT_API'] = 'pyside2'\n >>> from qtpy import QtGui, QtWidgets, QtCore\n >>> print(QtWidgets.QWidget)\n\nPyQt4\n=====\n\nSet the ``QT_API`` environment variable to 'pyqt' before importing any python\npackage::\n\n >>> import os\n >>> os.environ['QT_API'] = 'pyqt'\n >>> from qtpy import QtGui, QtWidgets, QtCore\n >>> print(QtWidgets.QWidget)\n\nPySide\n======\n\nSet the QT_API environment variable to 'pyside' before importing other\npackages::\n\n >>> import os\n >>> os.environ['QT_API'] = 'pyside'\n >>> from qtpy import QtGui, QtWidgets, QtCore\n >>> print(QtWidgets.QWidget)\n\n" >__package__: 'qtpy' >__loader__: <_frozen_importlib_external.SourceFileLoader object at 0x7f23a1b14550> >__spec__: ModuleSpec(name='qtpy', loader=<_frozen_importlib_external.SourceFileLoader object at 0x7f23a1b14550>, origin='/usr/share/git-cola/lib/qtpy/__init__.py', submodule_search_locations=['/usr/share/git-cola/lib/qtpy']) >__path__: ['/usr/share/git-cola/lib/qtpy'] >__file__: '/usr/share/git-cola/lib/qtpy/__init__.py' >__cached__: '/usr/share/git-cola/lib/qtpy/__pycache__/__init__.cpython-37.pyc' >__builtins__: {'__name__': 'builtins', '__doc__': "Built-in functions, exceptions, and other objects.\n\nNoteworthy: None is the `nil' object; Ellipsis represents `...' in slices.", '__package__': '', '__loader__': <class '_frozen_importlib.BuiltinImporter'>, '__spec__': ModuleSpec(name='builtins', loader=<class '_frozen_importlib.BuiltinImporter'>), '__build_class__': <built-in function __build_class__>, '__import__': <built-in function __import__>, 'abs': <built-in function abs>, 'all': <built-in function all>, 'any': <built-in function any>, 'ascii': <built-in function ascii>, 'bin': <built-in function bin>, 'breakpoint': <built-in function breakpoint>, 'callable': <built-in function callable>, 'chr': <built-in function chr>, 'compile': <built-in function compile>, 'delattr': <built-in function delattr>, 'dir': <built-in function dir>, 'divmod': <built-in function divmod>, 'eval': <built-in function eval>, 'exec': <built-in function exec>, 'format': <built-in function format>, 'getattr': <built-in function getattr>, 'globals': <built-in function globals>, 'hasattr': <built-in function hasattr>, 'hash': <built-in function hash>, 'hex': <built-in function hex>, 'id': <built-in function id>, 'input': <built-in function input>, 'isinstance': <built-in function isinstance>, 'issubclass': <built-in function issubclass>, 'iter': <built-in function iter>, 'len': <built-in function len>, 'locals': <built-in function locals>, 'max': <built-in function max>, 'min': <built-in function min>, 'next': <built-in function next>, 'oct': <built-in function oct>, 'ord': <built-in function ord>, 'pow': <built-in function pow>, 'print': <built-in function print>, 'repr': <built-in function repr>, 'round': <built-in function round>, 'setattr': <built-in function setattr>, 'sorted': <built-in function sorted>, 'sum': <built-in function sum>, 'vars': <built-in function vars>, 'None': None, 'Ellipsis': Ellipsis, 'NotImplemented': NotImplemented, 'False': False, 'True': True, 'bool': <class 'bool'>, 'memoryview': <class 'memoryview'>, 'bytearray': <class 'bytearray'>, 'bytes': <class 'bytes'>, 'classmethod': <class 'classmethod'>, 'complex': <class 'complex'>, 'dict': <class 'dict'>, 'enumerate': <class 'enumerate'>, 'filter': <class 'filter'>, 'float': <class 'float'>, 'frozenset': <class 'frozenset'>, 'property': <class 'property'>, 'int': <class 'int'>, 'list': <class 'list'>, 'map': <class 'map'>, 'object': <class 'object'>, 'range': <class 'range'>, 'reversed': <class 'reversed'>, 'set': <class 'set'>, 'slice': <class 'slice'>, 'staticmethod': <class 'staticmethod'>, 'str': <class 'str'>, 'super': <class 'super'>, 'tuple': <class 'tuple'>, 'type': <class 'type'>, 'zip': <class 'zip'>, '__debug__': True, 'BaseException': <class 'BaseException'>, 'Exception': <class 'Exception'>, 'TypeError': <class 'TypeError'>, 'StopAsyncIteration': <class 'StopAsyncIteration'>, 'StopIteration': <class 'StopIteration'>, 'GeneratorExit': <class 'GeneratorExit'>, 'SystemExit': <class 'SystemExit'>, 'KeyboardInterrupt': <class 'KeyboardInterrupt'>, 'ImportError': <class 'ImportError'>, 'ModuleNotFoundError': <class 'ModuleNotFoundError'>, 'OSError': <class 'OSError'>, 'EnvironmentError': <class 'OSError'>, 'IOError': <class 'OSError'>, 'EOFError': <class 'EOFError'>, 'RuntimeError': <class 'RuntimeError'>, 'RecursionError': <class 'RecursionError'>, 'NotImplementedError': <class 'NotImplementedError'>, 'NameError': <class 'NameError'>, 'UnboundLocalError': <class 'UnboundLocalError'>, 'AttributeError': <class 'AttributeError'>, 'SyntaxError': <class 'SyntaxError'>, 'IndentationError': <class 'IndentationError'>, 'TabError': <class 'TabError'>, 'LookupError': <class 'LookupError'>, 'IndexError': <class 'IndexError'>, 'KeyError': <class 'KeyError'>, 'ValueError': <class 'ValueError'>, 'UnicodeError': <class 'UnicodeError'>, 'UnicodeEncodeError': <class 'UnicodeEncodeError'>, 'UnicodeDecodeError': <class 'UnicodeDecodeError'>, 'UnicodeTranslateError': <class 'UnicodeTranslateError'>, 'AssertionError': <class 'AssertionError'>, 'ArithmeticError': <class 'ArithmeticError'>, 'FloatingPointError': <class 'FloatingPointError'>, 'OverflowError': <class 'OverflowError'>, 'ZeroDivisionError': <class 'ZeroDivisionError'>, 'SystemError': <class 'SystemError'>, 'ReferenceError': <class 'ReferenceError'>, 'MemoryError': <class 'MemoryError'>, 'BufferError': <class 'BufferError'>, 'Warning': <class 'Warning'>, 'UserWarning': <class 'UserWarning'>, 'DeprecationWarning': <class 'DeprecationWarning'>, 'PendingDeprecationWarning': <class 'PendingDeprecationWarning'>, 'SyntaxWarning': <class 'SyntaxWarning'>, 'RuntimeWarning': <class 'RuntimeWarning'>, 'FutureWarning': <class 'FutureWarning'>, 'ImportWarning': <class 'ImportWarning'>, 'UnicodeWarning': <class 'UnicodeWarning'>, 'BytesWarning': <class 'BytesWarning'>, 'ResourceWarning': <class 'ResourceWarning'>, 'ConnectionError': <class 'ConnectionError'>, 'BlockingIOError': <class 'BlockingIOError'>, 'BrokenPipeError': <class 'BrokenPipeError'>, 'ChildProcessError': <class 'ChildProcessError'>, 'ConnectionAbortedError': <class 'ConnectionAbortedError'>, 'ConnectionRefusedError': <class 'ConnectionRefusedError'>, 'ConnectionResetError': <class 'ConnectionResetError'>, 'FileExistsError': <class 'FileExistsError'>, 'FileNotFoundError': <class 'FileNotFoundError'>, 'IsADirectoryError': <class 'IsADirectoryError'>, 'NotADirectoryError': <class 'NotADirectoryError'>, 'InterruptedError': <class 'InterruptedError'>, 'PermissionError': <class 'PermissionError'>, 'ProcessLookupError': <class 'ProcessLookupError'>, 'TimeoutError': <class 'TimeoutError'>, 'open': <built-in function open>, 'quit': Use quit() or Ctrl-D (i.e. EOF) to exit, 'exit': Use exit() or Ctrl-D (i.e. EOF) to exit, 'copyright': Copyright (c) 2001-2019 Python Software Foundation. >All Rights Reserved. > >Copyright (c) 2000 BeOpen.com. >All Rights Reserved. > >Copyright (c) 1995-2001 Corporation for National Research Initiatives. >All Rights Reserved. > >Copyright (c) 1991-1995 Stichting Mathematisch Centrum, Amsterdam. >All Rights Reserved., 'credits': Thanks to CWI, CNRI, BeOpen.com, Zope Corporation and a cast of thousands > for supporting Python development. See www.python.org for more information., 'license': See https://www.python.org/psf/license/, 'help': Type help() for interactive help, or help(object) for help about object.} >os: <module 'os' from '/usr/lib64/python3.7/os.py'> >platform: <module 'platform' from '/usr/lib64/python3.7/platform.py'> >sys: <module 'sys' (built-in)> >_version: <module 'qtpy._version' from '/usr/share/git-cola/lib/qtpy/_version.py'> >__version__: '1.7.1' >PythonQtError: <class 'qtpy.PythonQtError'> >PythonQtWarning: <class 'qtpy.PythonQtWarning'> >QT_API: 'QT_API' >PYQT5_API: ['pyqt5'] >PYQT4_API: ['pyqt', 'pyqt4'] >PYSIDE_API: ['pyside'] >PYSIDE2_API: ['pyside2'] >binding_specified: False >API: 'pyside' >initial_api: 'pyqt5' >is_old_pyqt: False >is_pyqt46: False >PYQT5: True >PYQT4: False >PYSIDE: False >PYSIDE2: False
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 1759352
: 1623343 |
1623344
|
1623345
|
1623346
|
1623347
|
1623348
|
1623349