Issue #26513: Use winver.product_type instead of .product
diff --git a/Lib/platform.py b/Lib/platform.py
index 37dfbee..55f2fa8 100755
--- a/Lib/platform.py
+++ b/Lib/platform.py
@@ -652,7 +652,7 @@
                 csd = 'SP' + csd[13:]
 
     # VER_NT_SERVER = 3
-    if getattr(winver, 'product', None) == 3:
+    if getattr(winver, 'product_type', None) == 3:
         release = (_WIN32_SERVER_RELEASES.get((maj, min)) or
                    _WIN32_SERVER_RELEASES.get((maj, None)) or
                    release)