You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/class_examples.html
+1-1
Original file line number
Diff line number
Diff line change
@@ -353,7 +353,7 @@ <h2>Welcome to Usage Class Examples</h2>
353
353
<p>Select a module in the left menu to view usage examples. These examples are not for production and are automatically extracted from the main section of each module.</p>
354
354
<p>Back to the <ahref='index.html'>Python'Pizza3 documentation</a>.</p>
355
355
<p>When no module is selected, you see this welcome page. They are used to test classes with typical codes. The main section often serves as a testing script, example usage block, or self-contained test block. It's a way to demonstrate how the module's functionality works or to run simple unit tests and examples inline.</p>
_maxdisplay = 40 # maximum number of characters to display (should be even)
9029
9029
_propertyasattribute = False
9030
9030
_precision = 4
9031
+
_needs_sorting = False
9031
9032
9032
9033
# attributes for the iterator method
9033
9034
# Please keep it static, duplicate the object before changing _iter_
9034
9035
_iter_ = 0
9035
9036
9036
9037
# excluded attributes (keep the , in the Tupple if it is singleton)
9037
-
_excludedattr = {'_iter_','__class__','_protection','_evaluation','_returnerror','_debug','_precision'} # used by keys() and len()
9038
+
_excludedattr = {'_iter_','__class__','_protection','_evaluation','_returnerror','_debug','_precision','_needs_sorting'} # used by keys() and len()
0 commit comments