Home
last modified time | relevance | path

Searched refs:missing_ok (Results 1 – 4 of 4) sorted by relevance

/third_party/python/Lib/
Dpathlib.py1198 def unlink(self, missing_ok=False): argument
1206 if not missing_ok:
/third_party/python/Doc/library/
Dpathlib.rst1182 .. method:: Path.unlink(missing_ok=False)
1187 If *missing_ok* is false (the default), :exc:`FileNotFoundError` is
1190 If *missing_ok* is true, :exc:`FileNotFoundError` exceptions will be
1194 The *missing_ok* parameter was added.
/third_party/python/Misc/NEWS.d/
D3.8.0b1.rst1523 :class:`pathlib.Path.unlink` now accepts a *missing_ok* parameter to avoid a
/third_party/python/Lib/test/
Dtest_pathlib.py1936 p.unlink(missing_ok=True)