<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css" style="display:none;"><!-- P {margin-top:0;margin-bottom:0;} --></style>
</head>
<body dir="ltr">
<div id="divtagdefaultwrapper" style="font-size:12pt;color:#000000;font-family:Calibri,Arial,Helvetica,sans-serif;" dir="ltr">
<p></p>
<p style="margin-right: 0px; margin-bottom: 0.357143em; margin-left: 0px; padding: 0px; font-size: 14px; line-height: 1.42857em; color: rgb(34, 34, 34); font-family: verdana, arial, helvetica, sans-serif;">
Mac OS Python 3 PyQt5</p>
<p style="margin-right: 0px; margin-bottom: 0.357143em; margin-left: 0px; padding: 0px; font-size: 14px; line-height: 1.42857em; color: rgb(34, 34, 34); font-family: verdana, arial, helvetica, sans-serif;">
Program that causes error from tutorial but 'works' for the site owner (<a href="http://zetcode.com/gui/pyqt5/menustoolbars/" class="OWAAutoLink" id="LPlnk245749" previewremoved="true">http://zetcode.com/gui/pyqt5/menustoolbars/</a>):</p>
<div id="LPBorder_GT_14904625682230.5789634353815705" style="margin-bottom: 20px; overflow: auto; width: 100%; text-indent: 0px;">
<table id="LPContainer_14904625682210.6394801620665909" role="presentation" cellspacing="0" style="width: 90%; background-color: rgb(255, 255, 255); position: relative; overflow: auto; padding-top: 20px; padding-bottom: 20px; margin-top: 20px; border-top: 1px dotted rgb(200, 200, 200); border-bottom: 1px dotted rgb(200, 200, 200);">
<tbody>
<tr valign="top" style="border-spacing: 0px;">
<td id="TextCell_14904625682220.21805416462880256" colspan="2" style="vertical-align: top; position: relative; padding: 0px; display: table-cell;">
<div id="LPRemovePreviewContainer_14904625682220.31439469499314665"></div>
<div id="LPTitle_14904625682220.7032952214150816" style="top: 0px; color: rgb(0, 120, 215); font-weight: normal; font-size: 21px; font-family: wf_segoe-ui_light, "Segoe UI Light", "Segoe WP Light", "Segoe UI", "Segoe WP", Tahoma, Arial, sans-serif; line-height: 21px;">
<a id="LPUrlAnchor_14904625682220.5164088187193381" href="http://zetcode.com/gui/pyqt5/menustoolbars/" target="_blank" style="text-decoration: none;">Menus and toolbars in PyQt5 - ZetCode</a></div>
<div id="LPMetadata_14904625682220.160844406479568" style="margin: 10px 0px 16px; color: rgb(102, 102, 102); font-weight: normal; font-family: wf_segoe-ui_normal, "Segoe UI", "Segoe WP", Tahoma, Arial, sans-serif; font-size: 14px; line-height: 14px;">
zetcode.com</div>
<div id="LPDescription_14904625682230.4296130138219205" style="display: block; color: rgb(102, 102, 102); font-weight: normal; font-family: wf_segoe-ui_normal, "Segoe UI", "Segoe WP", Tahoma, Arial, sans-serif; font-size: 14px; line-height: 20px; max-height: 100px; overflow: hidden;">
Menus and toolbars in PyQt5. In this part of the PyQt5 tutorial, we will create menus and toolbars. A menu is a group of commands located in a menubar.</div>
</td>
</tr>
</tbody>
</table>
</div>
<br>
<pre style="margin-top: 0.357143em; margin-bottom: 0.357143em; padding: 4px 9px; border: 1px solid rgb(230, 230, 222); border-radius: 2px; overflow: auto; color: rgb(34, 34, 34);"><code style="font-family: monospace, monospace; margin: 0px 2px; border: 0px; background-color: transparent; border-radius: 2px; word-break: normal; display: block; font-size: 1em; line-height: 1.42857em; padding: 0px !important;">import sys
from PyQt5.QtWidgets import QMainWindow, QAction, qApp, QApplication
from PyQt5.QtGui import QIcon


class Example(QMainWindow):
    def __init__(self):
        super().__init__()

        self.initUI()

    def initUI(self):
        exitAction = QAction(QIcon('exit.png'), '&Exit', self)
        exitAction.setShortcut('Ctrl+Q')
        exitAction.setStatusTip('Exit application')
        exitAction.triggered.connect(qApp.quit)

        self.statusBar()

        menubar = self.menuBar()
        fileMenu = menubar.addMenu('&File')
        fileMenu.addAction(exitAction)

        self.setGeometry(300, 300, 300, 200)
        self.setWindowTitle('Menubar')
        self.show()


if __name__ == '__main__':
    app = QApplication(sys.argv)
    ex = Example()
    sys.exit(app.exec_())
</code></pre>
<p style="margin: 0.357143em 0px; padding: 0px; font-size: 14px; line-height: 1.42857em; color: rgb(34, 34, 34); font-family: verdana, arial, helvetica, sans-serif;">
Error:</p>
<pre style="margin-top: 0.357143em; margin-bottom: 0.357143em; padding: 4px 9px; border: 1px solid rgb(230, 230, 222); border-radius: 2px; overflow: auto; color: rgb(34, 34, 34);"><code style="font-family: monospace, monospace; margin: 0px 2px; border: 0px; background-color: transparent; border-radius: 2px; word-break: normal; display: block; font-size: 1em; line-height: 1.42857em; padding: 0px !important;">2017-03-23 23:25:08.606 Python[96170:2827344] *** Assertion failure in -[NSBitmapImageRep initWithCGImage:], /Library/Caches/com.apple.xbs/Sources/AppKit/AppKit-1504.81.100/AppKit.subproj/NSBitmapImageRep.m:1296  
2017-03-23 23:25:08.608 Python[96170:2827344] *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Invalid parameter not satisfying: cgImage != NULL'  
</code></pre>
<p style="margin: 0.357143em 0px; padding: 0px; font-size: 14px; line-height: 1.42857em; color: rgb(34, 34, 34); font-family: verdana, arial, helvetica, sans-serif;">
*I have looked everywhere for this com.apple.xbs folder, including other computers. I cannot find it anywhere on other computers or online. What is the issue? Apparently it is only for developers? I have signed up as a developer and still cannot find it. I
 do not see the correlation between apple and this PyQt5 program though. I also do not see anywhere in the code that would mention needing this folder.</p>
<p style="margin: 0.357143em 0px; padding: 0px; font-size: 14px; line-height: 1.42857em; color: rgb(34, 34, 34); font-family: verdana, arial, helvetica, sans-serif;">
*I have even checked hidden folders.</p>
<p style="margin-top: 0.357143em; margin-right: 0px; margin-left: 0px; padding: 0px; font-size: 14px; line-height: 1.42857em; color: rgb(34, 34, 34); font-family: verdana, arial, helvetica, sans-serif;">
*Perhaps you could try running it yourself and seeing if you get the same error. I would really appreciate any help. Thank you.</p>
<br>
<p></p>
</div>
</body>
</html>