You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The devguide suggests using make -j to build CPython in a few places, which is not actually a good idea. make -j means no limit on the number of parallel jobs, not "a sensible limit". It already uses make -j4 in a few places, and that's a very reasonable default that will work well for machines with 2-10 cores. Let's do that everywhere.