As discussed on python-dev, add a mechanism to indicate features

that are in the process of deprecation (PendingDeprecationWarning).
Docs could be improved.
This commit is contained in:
Neal Norwitz 2002-05-29 15:54:55 +00:00
parent e85ee8d815
commit d68f5171eb
7 changed files with 48 additions and 16 deletions

View file

@ -262,3 +262,4 @@ if __name__ == "__main__":
else:
_processoptions(sys.warnoptions)
filterwarnings("ignore", category=OverflowWarning, append=1)
filterwarnings("ignore", category=PendingDeprecationWarning, append=1)