Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/SCons/scons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMats Wichmann <mats@linux.com>2023-09-22 17:09:19 +0300
committerMats Wichmann <mats@linux.com>2023-09-22 17:09:19 +0300
commit7e5911b7ff3d4d4595a21cada6681113e7c4a0fb (patch)
tree1a7dc96b8bbc4af0c83c7a3d3412ef91394f52d2 /RELEASE.txt
parent8934947d8d4033f31231c123feb6cdaba0db484c (diff)
Make SCons.Util.types renaming explicit in notes [ci skip]
Signed-off-by: Mats Wichmann <mats@linux.com>
Diffstat (limited to 'RELEASE.txt')
-rw-r--r--RELEASE.txt6
1 files changed, 6 insertions, 0 deletions
diff --git a/RELEASE.txt b/RELEASE.txt
index e45284c8e..e70461467 100644
--- a/RELEASE.txt
+++ b/RELEASE.txt
@@ -72,6 +72,12 @@ CHANGED/ENHANCED EXISTING FUNCTIONALITY
The "--warn=missing-sconscript" commandline option is no longer available
as the warning was part of the transitional phase.
- Add missing directories to searched paths for mingw installs
+- SCons.Util.types renamed to to SCons.Util.sctypes to avoid any possible
+ confusion with the Python stdlib "types" module. Note that it was briefly
+ (for 4.5.x only) possible to import directly from SCons.Util.types,
+ although the preferred usage remains to import from SCons.Util only.
+ Any code that did the direct import will have to change to import from
+ SCons.Util.sctypes.
FIXES
-----