File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -830,14 +830,20 @@ class Option(object):
830
830
config .option .reportchars = "sfxw"
831
831
assert getreportopt (config ) == "sfx"
832
832
833
- config . option . reportchars = "sfx"
833
+ # Now with --disable-warnings.
834
834
config .option .disable_warnings = False
835
+ config .option .reportchars = "a"
836
+ assert getreportopt (config ) == "sxXwEf" # NOTE: "w" included!
837
+
838
+ config .option .reportchars = "sfx"
835
839
assert getreportopt (config ) == "sfxw"
836
840
837
841
config .option .reportchars = "sfxw"
838
- config .option .disable_warnings = False
839
842
assert getreportopt (config ) == "sfxw"
840
843
844
+ config .option .reportchars = "a"
845
+ assert getreportopt (config ) == "sxXwEf" # NOTE: "w" included!
846
+
841
847
config .option .reportchars = "A"
842
848
assert getreportopt (config ) == "sxXwEfpP"
843
849
You can’t perform that action at this time.
0 commit comments