<html>
  <head>
    <meta content="text/html; charset=utf-8" http-equiv="Content-Type">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    <div class="moz-cite-prefix">Le 07/07/2016 10:08, Gottfried Müller a
      écrit :<br>
    </div>
    <blockquote cite="mid:24215120-5e1f-ba0d-f7e3-9d6e08c30779@gmx.de"
      type="cite">I am using Python 3.5, PyQt 5.6 and Qt 5.6 (Manjaro
      distribution)
      <br>
      <br>
      You can follow the problem with the small python script in the
      attachment.
      <br>
      <br>
      There is a combobox with 2 entries (Home and a dot directory in
      the home path). After the start of the example program switch to
      the "UserShare" entry of the combobox. The treeview is empty now
      (I hope so). When you go back to the "Home" entry of the combobox,
      you will find beside of other directories in your home path
      (maybe) still the entry ".test". The model filter "QDir.AllDirs |
      QDir.NoDotAndDotDot" should not allow showing this entry. All
      other dot directories in the home path are hidden.
      <br>
      <br>
      Is this a feature or a bug?
      <br>
      <br>
      Is it a problem of PyQt or Qt? I suppose it is more a problem of
      Qt. I never wrote a C++ program. So it is not easy to me coding
      this example in C++.
      <br>
      <br>
      Gottfried
      <br>
      <br>
      <br>
      <fieldset class="mimeAttachmentHeader"></fieldset>
      <br>
      <pre wrap="">_______________________________________________
PyQt mailing list    <a class="moz-txt-link-abbreviated" href="mailto:PyQt@riverbankcomputing.com">PyQt@riverbankcomputing.com</a>
<a class="moz-txt-link-freetext" href="https://www.riverbankcomputing.com/mailman/listinfo/pyqt">https://www.riverbankcomputing.com/mailman/listinfo/pyqt</a></pre>
    </blockquote>
    <br>
    <br>
    I think you have to separate NoDotAndDotDot with Qt5<br>
    <br>
    QDir.AllDirs | QDir.NoDot | QDir.NoDotDot<br>
    <br>
    Vincent<br>
  </body>
</html>