Skip to content

Commit d96a52e

Browse files
[3.13] gh-121101: Document -Wall option (an alias for -Walways) (GH-121102) (#121146)
gh-121101: Document -Wall option (an alias for -Walways) (GH-121102) (cherry picked from commit 0a1e8ff) Co-authored-by: Wim Jeantine-Glenn <jump@wimglenn.com>
1 parent 009618f commit d96a52e

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

Doc/using/cmdline.rst

+2
Original file line numberDiff line numberDiff line change
@@ -441,6 +441,7 @@ Miscellaneous options
441441
-Wdefault # Warn once per call location
442442
-Werror # Convert to exceptions
443443
-Walways # Warn every time
444+
-Wall # Same as -Walways
444445
-Wmodule # Warn once per calling module
445446
-Wonce # Warn once per Python process
446447
-Wignore # Never warn
@@ -909,6 +910,7 @@ conflict.
909910
PYTHONWARNINGS=default # Warn once per call location
910911
PYTHONWARNINGS=error # Convert to exceptions
911912
PYTHONWARNINGS=always # Warn every time
913+
PYTHONWARNINGS=all # Same as PYTHONWARNINGS=always
912914
PYTHONWARNINGS=module # Warn once per calling module
913915
PYTHONWARNINGS=once # Warn once per Python process
914916
PYTHONWARNINGS=ignore # Never warn

Misc/python.man

+1
Original file line numberDiff line numberDiff line change
@@ -251,6 +251,7 @@ emitted by a process (even those that are otherwise ignored by default):
251251
-Wdefault # Warn once per call location
252252
-Werror # Convert to exceptions
253253
-Walways # Warn every time
254+
-Wall # Same as -Walways
254255
-Wmodule # Warn once per calling module
255256
-Wonce # Warn once per Python process
256257
-Wignore # Never warn

0 commit comments

Comments
 (0)