From 31bd37c6ac8de9e8c1bacebc2d8e1215df91eb96 Mon Sep 17 00:00:00 2001 From: stepshal Date: Tue, 18 Oct 2016 20:24:35 +0700 Subject: Fix quantity of blank lines. --- setuptools/msvc.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'setuptools/msvc.py') diff --git a/setuptools/msvc.py b/setuptools/msvc.py index e9665e10..ef85f64a 100644 --- a/setuptools/msvc.py +++ b/setuptools/msvc.py @@ -34,11 +34,13 @@ else: Mock winreg and environ so the module can be imported on this platform. """ + class winreg: HKEY_USERS = None HKEY_CURRENT_USER = None HKEY_LOCAL_MACHINE = None HKEY_CLASSES_ROOT = None + safe_env = dict() try: @@ -458,6 +460,7 @@ class SystemInfo: vc_ver: float Required Microsoft Visual C++ version. """ + # Variables and properties in this class use originals CamelCase variables # names from Microsoft source files for more easy comparaison. WinDir = safe_env.get('WinDir', '') -- cgit v1.2.1