diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2024-03-13 13:03:13 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-13 13:03:13 (GMT) |
commit | 33662d4e01d73cd4f29a25efc2ef09288129023f (patch) | |
tree | f27d01f131d8831100a05ab6f8920159dc4e6db8 /Doc | |
parent | 617aca9e745b3dfb5e6bc8cda07632d2f716426d (diff) | |
download | cpython-33662d4e01d73cd4f29a25efc2ef09288129023f.zip cpython-33662d4e01d73cd4f29a25efc2ef09288129023f.tar.gz cpython-33662d4e01d73cd4f29a25efc2ef09288129023f.tar.bz2 |
gh-90300: Fix cmdline.rst (GH-116721)
* Fix the description of the "-b" option.
* Add references to environment variables for "-s" and "-X dev" options.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/using/cmdline.rst | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/Doc/using/cmdline.rst b/Doc/using/cmdline.rst index 36cddff..565d86c 100644 --- a/Doc/using/cmdline.rst +++ b/Doc/using/cmdline.rst @@ -242,12 +242,13 @@ Miscellaneous options .. option:: -b - Issue a warning when comparing :class:`bytes` or :class:`bytearray` with - :class:`str` or :class:`bytes` with :class:`int`. Issue an error when the - option is given twice (:option:`!-bb`). + Issue a warning when converting :class:`bytes` or :class:`bytearray` to + :class:`str` without specifying encoding or comparing :class:`!bytes` or + :class:`!bytearray` with :class:`!str` or :class:`!bytes` with :class:`int`. + Issue an error when the option is given twice (:option:`!-bb`). .. versionchanged:: 3.5 - Affects comparisons of :class:`bytes` with :class:`int`. + Affects also comparisons of :class:`bytes` with :class:`int`. .. option:: -B @@ -386,6 +387,8 @@ Miscellaneous options Don't add the :data:`user site-packages directory <site.USER_SITE>` to :data:`sys.path`. + See also :envvar:`PYTHONNOUSERSITE`. + .. seealso:: :pep:`370` -- Per user site-packages directory @@ -517,7 +520,7 @@ Miscellaneous options asyncio'``. See also :envvar:`PYTHONPROFILEIMPORTTIME`. * ``-X dev``: enable :ref:`Python Development Mode <devmode>`, introducing additional runtime checks that are too expensive to be enabled by - default. + default. See also :envvar:`PYTHONDEVMODE`. * ``-X utf8`` enables the :ref:`Python UTF-8 Mode <utf8-mode>`. ``-X utf8=0`` explicitly disables :ref:`Python UTF-8 Mode <utf8-mode>` (even when it would otherwise activate automatically). |