summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorPetri Lehtinen <petri@digip.org>2011-11-05 19:04:24 (GMT)
committerPetri Lehtinen <petri@digip.org>2011-11-05 19:17:08 (GMT)
commitbc74ee039c83e00b815b37dca81d115b7291e151 (patch)
tree9966129a6deab6baf0d5c414ea3cffb255d87923 /Misc/NEWS
parent395ca7238015eb5aacadde2917c185cba5fea726 (diff)
downloadcpython-bc74ee039c83e00b815b37dca81d115b7291e151.zip
cpython-bc74ee039c83e00b815b37dca81d115b7291e151.tar.gz
cpython-bc74ee039c83e00b815b37dca81d115b7291e151.tar.bz2
Remove __pycache__ directories correctly on OpenBSD
The find utility of OpenBSD doesn't support the "-exec cmd {} +" action. Change it to use "-depth -exec cmd {} ;" instead. Also, remove __pycache__ before *.py[co], as most bytecode files are in __pycache__ directories. Only those generated by Python 2 under Doc/tools are not. Closes #13326.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 5ac8c98..de3d3f3 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -208,6 +208,11 @@ Library
- Issue #10860: http.client now correctly handles an empty port after port
delimiter in URLs.
+Build
+-----
+
+- Issue #13326: Clean __pycache__ directories correctly on OpenBSD.
+
Tests
-----