<div dir="ltr">Hi, consider this snippet:<div><br></div><blockquote style="margin:0 0 0 40px;border:none;padding:0px"><div>from PyQt5.Qt import *</div><div>from PyQt5.Qsci import QsciScintilla</div><div><br></div><div><br></div><div>if __name__ == '__main__':</div><div>    app = QApplication([])</div><div>    w = QsciScintilla()</div><div>    w.setText("hello world")</div><div>    w.show()</div><div>    app.exec_()</div><div><br></div></blockquote><b>Test1) </b>Run it, press ctrl+c, close the window and then open your system clipboard viewer... for some reason on windows7 the is broken, you'll binary content --> <a href="https://dl.dropboxusercontent.com/s/gtf9cgg1cygbre4/clipbrd_2019-06-14_12-56-37.png">this</a> . That means you won't be able to paste the content on a text editor.<div><br></div><div><b>Test2) </b>Run it, press ctrl+c and then open your system clipboard viewer, in this case you'll be able to see the copied content correctly, like <a href="https://dl.dropboxusercontent.com/s/8xq5riznnxs07cg/clipbrd_2019-06-14_12-59-06.png">this</a>.</div><div><br></div><div>This issue has really annoyed me in the past many times but I didn't know how to reproduce it or what was the reason why the content I'd copied from my app couldn't be pasted anymore</div><div><br></div><div><b>Requirements:</b></div><div><br></div><div>windows 7 ultimate</div><div>Python 3.6.4 (v3.6.4:d48eceb, Dec 19 2017, 06:04:45) [MSC v.1900 32 bit (Intel)] on win32<br></div><div><br></div><div>QScintilla==2.11.2.dev1905151033<br></div><div>PyQt5==5.12.2<br>PyQt5-sip==4.19.17<br></div></div>