Bigger buffer size for C profiler (if profiling is enabled).
diff --git a/Mac/Python/macmain.c b/Mac/Python/macmain.c
index 24bcd77..0fdcb51 100644
--- a/Mac/Python/macmain.c
+++ b/Mac/Python/macmain.c
@@ -269,7 +269,7 @@
 	}
 #if __profile__ == 1
 	/* collectSummary or collectDetailed, timebase, #routines, max stack depth */
-	ProfilerInit(collectSummary, bestTimeBase, 2000, 150);
+	ProfilerInit(collectSummary, bestTimeBase, 8000, 250);
 #endif
 
 	/* Tell the rest of python about our argc/argv */