]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Put a do-nothing set_python_build() back.
authorMichael W. Hudson <mwh@python.net>
Tue, 8 Oct 2002 14:59:43 +0000 (14:59 +0000)
committerMichael W. Hudson <mwh@python.net>
Tue, 8 Oct 2002 14:59:43 +0000 (14:59 +0000)
Lib/distutils/sysconfig.py

index 52967e04f35b120df8748fe697174adfe4248c5f..fa4a3029488d934973d6d0f334a18722b1c84c31 100644 (file)
@@ -38,6 +38,11 @@ else:
                                                "Lib", "os.py"))
 del argv0_path, landmark
 
+# set_python_build() was present in 2.2 and 2.2.1; it's not needed
+# any more, but so 3rd party build scripts don't break, we leave
+# a do-nothing version:
+def set_python_build():
+    pass
 
 def get_python_inc(plat_specific=0, prefix=None):
     """Return the directory containing installed Python header files.