Co-authored-by: shallow-beach <96891913+shallow-beach@users.noreply.github.com>
fix (#128077)
- name: 'Build documentation'
run: xvfb-run make -C Doc/ PYTHON=../python SPHINXOPTS="-q -W -j4" doctest suspicious html
- name: 'Upload'
- uses: actions/upload-artifact@v3
+ uses: actions/upload-artifact@v4
with:
name: doc-html
path: Doc/build/html
+ include-hidden-files: true
+ overwrite: true
instance objects are attribute references. There are two kinds of valid
attribute names: data attributes and methods.
-*data attributes* correspond to "instance variables" in Smalltalk, and to "data
+*Data attributes* correspond to "instance variables" in Smalltalk, and to "data
members" in C++. Data attributes need not be declared; like local variables,
they spring into existence when they are first assigned to. For example, if
``x`` is the instance of :class:`MyClass` created above, the following piece of