<html>
  <head>

    <meta http-equiv="content-type" content="text/html; charset=UTF-8">
  </head>
  <body text="#000000" bgcolor="#FFFFFF">
    <p>I was reading through this online documentation and encountered
      what appears to be an oversight</p>
    <p><a
href="https://www.riverbankcomputing.com/static/Docs/PyQt5/signals_slots.html">https://www.riverbankcomputing.com/static/Docs/PyQt5/signals_slots.html</a></p>
    <p>This page reference PyQt5 example code but in the code it is
      using the PyQt4 version of the print command as follows:</p>
    <pre style="overflow: auto hidden; padding: 5px; background-color: rgb(238, 255, 204); color: rgb(51, 51, 51); line-height: 15.6px; border-top: 1px solid rgb(170, 204, 153); border-bottom: 1px solid rgb(170, 204, 153); border-image: initial; border-left: none; border-right: none; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;"><span class="nb" style="color: rgb(0, 112, 32);">print</span> <span class="s2" style="color: rgb(64, 112, 160);">"trigger signal received"</span></pre>
    <p>Where the command should appear as follows:</p>
    <pre style="overflow: auto hidden; padding: 5px; background-color: rgb(238, 255, 204); color: rgb(51, 51, 51); line-height: 15.6px; border-top: 1px solid rgb(170, 204, 153); border-bottom: 1px solid rgb(170, 204, 153); border-image: initial; border-left: none; border-right: none; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: start; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; text-decoration-style: initial; text-decoration-color: initial;"><span class="nb" style="color: rgb(0, 112, 32);">print</span>(<span class="s2" style="color: rgb(64, 112, 160);">"trigger signal received")</span></pre>
    <p>If it were an actual PyQt5 version of the print command.  I bring
      this up mainly because I am not wondering if any of the rest of
      the example code on this page is also old PyQt4 code instead of
      the current PyQt5 or was this one statement the only oversight?<br>
    </p>
  </body>
</html>