bpo-39452: [doc] Change "must" to "can" on relative import style in `… · python/cpython@57457a1 (original) (raw)

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