Issue #23207: Improved kwarg validation.

This commit is contained in:
Vinay Sajip 2015-03-18 08:47:58 +00:00
parent ab6b9f8a5b
commit d55436ace3
2 changed files with 5 additions and 1 deletions

View file

@ -1734,8 +1734,8 @@ def basicConfig(**kwargs):
"specified together with 'handlers'")
if handlers is None:
filename = kwargs.pop("filename", None)
mode = kwargs.pop("filemode", 'a')
if filename:
mode = kwargs.pop("filemode", 'a')
h = FileHandler(filename, mode)
else:
stream = kwargs.pop("stream", None)