File tree Expand file tree Collapse file tree 4 files changed +13
-0
lines changed Expand file tree Collapse file tree 4 files changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -76,6 +76,8 @@ RELEASE VERSION/DATE TO BE FILLED IN LATER
76
76
- Migrate setup.cfg logic to pyproject.toml; remove setup.cfg.
77
77
- Update .gitattributes to match .editorconfig; enforce eol settings.
78
78
- Replace black/flake8 with ruff for more efficient formatting & linting.
79
+ - When debugging (--debug=pdb), the filename SCsub is now recognized when
80
+ manipulating breakpoints.
79
81
80
82
From Raymond Li:
81
83
- Fix issue #3935: OSErrors are now no longer hidden during execution of
Original file line number Diff line number Diff line change @@ -74,6 +74,8 @@ CHANGED/ENHANCED EXISTING FUNCTIONALITY
74
74
allow a developer to supply a custom validator, which previously
75
75
could be inhibited by the converter failing before the validator
76
76
is reached.
77
+ - When debugging (--debug=pdb), the filename SCsub is now recognized when
78
+ manipulating breakpoints.
77
79
78
80
FIXES
79
81
-----
Original file line number Diff line number Diff line change 86
86
"Sconstruct" ,
87
87
"sconstruct" ,
88
88
"SConscript" ,
89
+ "Sconscript" ,
89
90
"sconscript" ,
91
+ "SCsub" , # Uncommon alternative to SConscript
92
+ "Scsub" ,
93
+ "scsub" ,
90
94
]
91
95
92
96
# Global variables
Original file line number Diff line number Diff line change @@ -1048,6 +1048,11 @@ The names &SConstruct; and &SConscript; are now
1048
1048
recognized without requiring
1049
1049
<filename >.py</filename > suffix.
1050
1050
</para >
1051
+ <para >
1052
+ <emphasis >Changed in version 4.7.1</emphasis >:
1053
+ The name <filename >SCsub</filename > is now recognized
1054
+ without requiring <filename >.py</filename > suffix.
1055
+ </para >
1051
1056
</note >
1052
1057
</listitem >
1053
1058
</varlistentry >
You can’t perform that action at this time.
0 commit comments