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

@@ -140,9 +140,9 @@ class Path(PurePath):
def stat(self): ...
def owner(self): ...
def group(self): ...
def open(self, mode='', buffering=-1, encoding=None, errors=None, newline=None): ...
def touch(self, mode=438, exist_ok=True): ...
def mkdir(self, mode=511, parents=False): ...
def open(self, mode=..., buffering=..., encoding=..., errors=..., newline=...): ...
def touch(self, mode=..., exist_ok=...): ...
def mkdir(self, mode=..., parents=...): ...
def chmod(self, mode): ...
def lchmod(self, mode): ...
def unlink(self): ...
@@ -150,7 +150,7 @@ class Path(PurePath):
def lstat(self): ...
def rename(self, target): ...
def replace(self, target): ...
def symlink_to(self, target, target_is_directory=False): ...
def symlink_to(self, target, target_is_directory=...): ...
def exists(self): ...
def is_dir(self): ...
def is_file(self): ...