Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

7 lines
169B

  1. from pathlib import PurePath
  2. from os import PathLike
  3. from typing import Union
  4. #: A path, string, or convertible-to-Path object
  5. Pathish = Union[PathLike, PurePath, str]