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 @@ -1023,6 +1023,11 @@ The names &SConstruct; and &SConscript; are now
1023
1023
recognized without requiring
1024
1024
<filename >.py</filename > suffix.
1025
1025
</para >
1026
+ <para >
1027
+ <emphasis >Changed in version 4.7.1</emphasis >:
1028
+ The name <filename >SCsub</filename > is now recognized
1029
+ without requiring <filename >.py</filename > suffix.
1030
+ </para >
1026
1031
</note >
1027
1032
</listitem >
1028
1033
</varlistentry >
You can’t perform that action at this time.
0 commit comments