Consistently use '= ...' for optional parameters.

This commit is contained in:
Matthias Kramm
2015-11-09 13:55:00 -08:00
parent 375bf063b1
commit 94c9ce8fd0
278 changed files with 2085 additions and 2085 deletions

View File

@@ -4,17 +4,17 @@
from typing import Any, Dict, Tuple, TextIO
def pformat(o: object, indent: int = 1, width: int = 80,
depth: int = None) -> str: ...
def pprint(o: object, stream: TextIO = None, indent: int = 1, width: int = 80,
depth: int = None) -> None: ...
def pformat(o: object, indent: int = ..., width: int = ...,
depth: int = ...) -> str: ...
def pprint(o: object, stream: TextIO = ..., indent: int = ..., width: int = ...,
depth: int = ...) -> None: ...
def isreadable(o: object) -> bool: ...
def isrecursive(o: object) -> bool: ...
def saferepr(o: object) -> str: ...
class PrettyPrinter:
def __init__(self, indent: int = 1, width: int = 80, depth: int = None,
stream: TextIO = None) -> None: ...
def __init__(self, indent: int = ..., width: int = ..., depth: int = ...,
stream: TextIO = ...) -> None: ...
def pformat(self, o: object) -> str: ...
def pprint(self, o: object) -> None: ...
def isreadable(self, o: object) -> bool: ...