Commit 70d07761 authored by Guido van Rossum's avatar Guido van Rossum

Ignore OverflowWarning by default. To enable the warning, use

	python -Wdefault

or

	python -Wdefault::OverflowWarning
parent 7a2f95e3
......@@ -249,3 +249,4 @@ if __name__ == "__main__":
_test()
else:
_processoptions(sys.warnoptions)
filterwarnings("ignore", category=OverflowWarning, append=1)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment