bpo-39452: [doc] Change "must" to "can" on relative import style in __main__ (GH-29379)

This commit is contained in:
Andre Delfino 2021-11-06 15:09:23 -03:00 committed by GitHub
parent 77a2c77c84
commit 57457a1e5c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -231,7 +231,7 @@ students::
print(f'Found student: {search_students(student_name)}')
Note that ``from .student import search_students`` is an example of a relative
import. This import style must be used when referencing modules within a
import. This import style can be used when referencing modules within a
package. For more details, see :ref:`intra-package-references` in the
:ref:`tut-modules` section of the tutorial.