Getting rid of pre-Carbon (MacOS8) support. All code depending on
TARGET_API_MAC_OS8 (or !TARGET_API_MAC_CARBON) is gone. Also some
TARGET_API_MAC_OSX conditional code is gone, because it is no longer
used on OSX-only Python (only in MacPython-OS9).
diff --git a/Mac/Modules/scrap/scrapscan.py b/Mac/Modules/scrap/scrapscan.py
index 379ded3..0b173a4 100644
--- a/Mac/Modules/scrap/scrapscan.py
+++ b/Mac/Modules/scrap/scrapscan.py
@@ -40,21 +40,12 @@
 	def makeblacklistnames(self):
 		return [
 			"GetScrapFlavorInfoList",
+			'InfoScrap',
+			'GetScrap',
+			'ZeroScrap',
+			'PutScrap',
 			]
 
-	def makegreylist(self):
-		return [
-			('#if !TARGET_API_MAC_CARBON', [
-				'InfoScrap',
-				'GetScrap',
-				'ZeroScrap',
-				'PutScrap',
-			]),
-			('#if TARGET_API_MAC_CARBON', [
-				'CallInScrapPromises',
-				'ClearCurrentScrap',
-			])]
-
 	def makeblacklisttypes(self):
 		return [
 			'ScrapPromiseKeeperUPP',