This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author arigo
Recipients arigo
Date 2016-12-06.11:50:22
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1481025022.67.0.209140991294.issue28883@psf.upfronthosting.co.za>
In-reply-to
Content
os.scandir() returns an iterable object that should not be used
  from multiple threads.  Doing so can e.g. cause one thread to
  close the dirp while another thread is still using it.  This is
  likely to crash.  Similarly, the test for (!iterator->dirp) at
  the start of ScandirIterator_iternext() is only done once even
  if the following loop runs two or three times because of "." or
  ".." entries.
History
Date User Action Args
2016-12-06 11:50:22arigosetrecipients: + arigo
2016-12-06 11:50:22arigosetmessageid: <1481025022.67.0.209140991294.issue28883@psf.upfronthosting.co.za>
2016-12-06 11:50:22arigolinkissue28883 messages
2016-12-06 11:50:22arigocreate