find build -name 'fficonfig.h' -exec rm -f {} ';' || true
find build -name 'fficonfig.py' -exec rm -f {} ';' || true
-rm -f Lib/lib2to3/*Grammar*.pickle
- -rm -rf build
+ -find build -type f -a ! -name '*.gc??' -exec rm -f {} ';'
profile-removal:
find . -name '*.gc??' -exec rm -f {} ';'
Core and Builtins
-----------------
+- Issue #26307: The profile-opt build now applys PGO to the built-in modules.
+
- Issue #27870: A left shift of zero by a large integer no longer attempts
to allocate large amounts of memory.