Skip to content

Commit b2f2be1

Browse files
committed
Add SCsub to known SConscript names
1 parent c70c47f commit b2f2be1

File tree

4 files changed

+13
-0
lines changed

4 files changed

+13
-0
lines changed

CHANGES.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,8 @@ RELEASE VERSION/DATE TO BE FILLED IN LATER
7676
- Migrate setup.cfg logic to pyproject.toml; remove setup.cfg.
7777
- Update .gitattributes to match .editorconfig; enforce eol settings.
7878
- 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.
7981

8082
From Raymond Li:
8183
- Fix issue #3935: OSErrors are now no longer hidden during execution of

RELEASE.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,8 @@ CHANGED/ENHANCED EXISTING FUNCTIONALITY
7474
allow a developer to supply a custom validator, which previously
7575
could be inhibited by the converter failing before the validator
7676
is reached.
77+
- When debugging (--debug=pdb), the filename SCsub is now recognized when
78+
manipulating breakpoints.
7779

7880
FIXES
7981
-----

SCons/Script/Main.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,11 @@
8686
"Sconstruct",
8787
"sconstruct",
8888
"SConscript",
89+
"Sconscript",
8990
"sconscript",
91+
"SCsub", # Uncommon alternative to SConscript
92+
"Scsub",
93+
"scsub",
9094
]
9195

9296
# Global variables

doc/man/scons.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1023,6 +1023,11 @@ The names &SConstruct; and &SConscript; are now
10231023
recognized without requiring
10241024
<filename>.py</filename> suffix.
10251025
</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>
10261031
</note>
10271032
</listitem>
10281033
</varlistentry>

0 commit comments

Comments
 (0)