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 andrekorol
Recipients andrekorol
Date 2017-07-17.05:26:38
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1500269204.65.0.629378826366.issue30942@psf.upfronthosting.co.za>
In-reply-to
Content
I forked cpython and implemented an lwalk function on os.py. The lwalk funtion behaves exactly like walk(), except that it recurses only to a certain level of depth that can be selected by the user. More information on the lwalk function can be found on "os.py" in my cpython fork. It worked fine when I tested the funtion in a local virtual environment, but when I installed Python 3.7 with my lwalk function implemented in os.py I get an error when I try to test it in my recent Python installation: "TypeError: 'NoneType' object is not iterable".
I'd like to know where else I need to add info about my lwalk function so it can be correctly used in a fresh Python installation and so than I can send a Pull Request.
History
Date User Action Args
2017-07-17 05:26:45andrekorolsetrecipients: + andrekorol
2017-07-17 05:26:44andrekorolsetmessageid: <1500269204.65.0.629378826366.issue30942@psf.upfronthosting.co.za>
2017-07-17 05:26:44andrekorollinkissue30942 messages
2017-07-17 05:26:40andrekorolcreate