https://github.com/python/cpython/commit/597d814334742dde386a4d2979b9418aee6fcaba
commit: 597d814334742dde386a4d2979b9418aee6fcaba
branch: main
author: Victor Wheeler <[email protected]>
committer: willingc <[email protected]>
date: 2024-10-30T11:22:58-07:00
summary:

gh-126055:  Add omitted command (in docs [os.walk]) for code to fulfill 
`shutil.rmtree` algorithm (GH-126067)

* gh-126055:  Add omitted command (in docs [os.walk]) for code to fulfill 
`shutil.rmtree` algorithm.

Resolves #126055

* gh-126055:  Fix omitted code highlighting

files:
M Doc/library/os.rst

diff --git a/Doc/library/os.rst b/Doc/library/os.rst
index 081d7a6f97b079..f9cded40c2c755 100644
--- a/Doc/library/os.rst
+++ b/Doc/library/os.rst
@@ -3675,6 +3675,7 @@ features:
               os.remove(os.path.join(root, name))
           for name in dirs:
               os.rmdir(os.path.join(root, name))
+      os.rmdir(top)
 
    .. audit-event:: os.walk top,topdown,onerror,followlinks os.walk
 

_______________________________________________
Python-checkins mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3/lists/python-checkins.python.org/
Member address: [email protected]

Reply via email to