diff options
author | Cheryl Sabella <cheryl.sabella@gmail.com> | 2019-03-23 11:33:42 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-23 11:33:42 (GMT) |
commit | d60f658fc0278f3fcdadec8ddcab35b8ae03e1d1 (patch) | |
tree | ed62b0ba7464fae17af4886b4fb6f9e7fa7b32df /Misc/NEWS.d/next | |
parent | 6d5ee973f0600a3a9444f569dcf0dd346bfa2a11 (diff) | |
download | cpython-d60f658fc0278f3fcdadec8ddcab35b8ae03e1d1.zip cpython-d60f658fc0278f3fcdadec8ddcab35b8ae03e1d1.tar.gz cpython-d60f658fc0278f3fcdadec8ddcab35b8ae03e1d1.tar.bz2 |
bpo-23205: IDLE: Add tests and refactor grep's findfiles (GH-12203)
* Add tests for grep findfiles.
* Move findfiles to module function.
* Change findfiles to use os.walk.
Based on a patch by Al Sweigart.
Diffstat (limited to 'Misc/NEWS.d/next')
-rw-r--r-- | Misc/NEWS.d/next/IDLE/2019-03-06-14-47-57.bpo-23205.Vv0gfH.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/IDLE/2019-03-06-14-47-57.bpo-23205.Vv0gfH.rst b/Misc/NEWS.d/next/IDLE/2019-03-06-14-47-57.bpo-23205.Vv0gfH.rst new file mode 100644 index 0000000..9e7c222 --- /dev/null +++ b/Misc/NEWS.d/next/IDLE/2019-03-06-14-47-57.bpo-23205.Vv0gfH.rst @@ -0,0 +1,2 @@ +For the grep module, add tests for findfiles, refactor findfiles to be a +module-level function, and refactor findfiles to use os.walk. |