File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -146,6 +146,7 @@ RELEASE VERSION/DATE TO BE FILLED IN LATER
146146 - Fix a test problem on Windows where UNC tests failed due to incorrect
147147 path munging if a non-default %TEMP% was defined (as in moving to
148148 a Dev Drive). Also some cleanup.
149+ - Improve the wording of Configure methods.
149150
150151
151152RELEASE 4.9.1 - Thu, 27 Mar 2025 11:40:20 -0700
Original file line number Diff line number Diff line change @@ -124,6 +124,8 @@ DOCUMENTATION
124124 as returning None. It is now explicit that the path is returned if
125125 running in a virtualenv, and an empty (falsy) string if not.
126126
127+ - Improve the wording of Configure methods.
128+
127129DEVELOPMENT
128130-----------
129131
Original file line number Diff line number Diff line change @@ -560,6 +560,12 @@ class Node(metaclass=NoSlotsPyPy):
560560 '_func_target_from_source' ]
561561
562562 class Attrs :
563+ """A generic place to store extra information about the Node.
564+
565+ Defines ``__slots__`` for performance, but different consumers
566+ define their own attributes, so to avoid having to collect them
567+ all here, we add a ``__dict__`` slot to get dynamic attributes.
568+ """
563569 __slots__ = ('shared' , '__dict__' )
564570
565571
You can’t perform that action at this time.
0 commit comments