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 serhiy.storchaka
Recipients benhoyt, docs@python, eryksun, gvanrossum, ned.deily, paul.moore, python-dev, serhiy.storchaka, steve.dower, tim.golden, vstinner, zach.ware
Date 2016-10-08.07:23:23
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1475911404.35.0.345034906028.issue27998@psf.upfronthosting.co.za>
In-reply-to
Content
Hmm, tests are passed on some Windows buildbots, but failed on others.

http://buildbot.python.org/all/builders/AMD64%20Windows10%203.x/builds/1631/steps/test/logs/stdio
======================================================================
ERROR: test_walk_topdown (test.test_os.BytesWalkTests)
----------------------------------------------------------------------
Traceback (most recent call last):
  File "D:\buildarea\3.x.bolen-windows10\build\lib\test\test_os.py", line 890, in test_walk_topdown
    all = list(self.walk(self.walk_path))
  File "D:\buildarea\3.x.bolen-windows10\build\lib\test\test_os.py", line 1055, in walk
    for broot, bdirs, bfiles in os.walk(os.fsencode(top), **kwargs):
  File "D:\buildarea\3.x.bolen-windows10\build\lib\os.py", line 409, in walk
    yield from walk(new_path, topdown, onerror, followlinks)
  File "D:\buildarea\3.x.bolen-windows10\build\lib\os.py", line 367, in walk
    is_dir = entry.is_dir()
TypeError: bad argument type for built-in operation

----------------------------------------------------------------------

The error message is not very informative. Seems like some C API function takes an argument of wrong type (e.g. bytes instead of unicode).
History
Date User Action Args
2016-10-08 07:23:24serhiy.storchakasetrecipients: + serhiy.storchaka, gvanrossum, paul.moore, vstinner, tim.golden, ned.deily, benhoyt, docs@python, python-dev, zach.ware, eryksun, steve.dower
2016-10-08 07:23:24serhiy.storchakasetmessageid: <1475911404.35.0.345034906028.issue27998@psf.upfronthosting.co.za>
2016-10-08 07:23:24serhiy.storchakalinkissue27998 messages
2016-10-08 07:23:23serhiy.storchakacreate