Skip to content

Commit

Permalink
Mark debuglevel argument as optional argument (#1168)
Browse files Browse the repository at this point in the history
  • Loading branch information
Solumin authored and matthiaskramm committed Apr 17, 2017
1 parent f6619a4 commit 2961ddd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stdlib/2/urllib2.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ class ProxyDigestAuthHandler(BaseHandler, AbstractDigestAuthHandler):
def http_error_407(self, req, fp, code, msg, headers): ...

class AbstractHTTPHandler(BaseHandler):
def __init__(self, debuglevel: int) -> None: ...
def __init__(self, debuglevel: int=0) -> None: ...
def do_request_(self, request): ...
def do_open(self, http_class, req): ...

Expand Down

0 comments on commit 2961ddd

Please sign in to comment.