[Python-checkins] Fix whitespace error in setup.py (GH-31960)

JelleZijlstra webhook-mailer at python.org
Thu Mar 17 12:53:45 EDT 2022


https://github.com/python/cpython/commit/424dfc723137fb1ca8f3b5e4eb12ba3e669a9f52
commit: 424dfc723137fb1ca8f3b5e4eb12ba3e669a9f52
branch: main
author: Erlend Egeberg Aasland <erlend.aasland at innova.no>
committer: JelleZijlstra <jelle.zijlstra at gmail.com>
date: 2022-03-17T09:53:29-07:00
summary:

Fix whitespace error in setup.py (GH-31960)

files:
M setup.py

diff --git a/setup.py b/setup.py
index e47b2ab90958b..c3cf2417bc429 100644
--- a/setup.py
+++ b/setup.py
@@ -1247,7 +1247,7 @@ def detect_readline_curses(self):
             self.missing.append('_curses_panel')
 
     def detect_crypt(self):
-         self.addext(Extension('_crypt', ['_cryptmodule.c']))
+        self.addext(Extension('_crypt', ['_cryptmodule.c']))
 
     def detect_dbm_gdbm(self):
         # Modules that provide persistent dictionary-like semantics.  You will



More information about the Python-checkins mailing list