Suggest files and paths modules (#21950)

This commit is contained in:
Federico Ceratto
2023-05-29 16:51:31 +01:00
committed by GitHub
parent 108410ac34
commit ef060e8184
3 changed files with 7 additions and 0 deletions

View File

@@ -22,6 +22,7 @@ runnableExamples:
assert myFile.changeFileExt("c") == "/path/to/my/file.c"
## **See also:**
## * `paths <paths.html>`_ and `files <files.html>`_ modules for high-level file manipulation
## * `osproc module <osproc.html>`_ for process communication beyond
## `execShellCmd proc`_
## * `uri module <uri.html>`_

View File

@@ -1,4 +1,7 @@
## This module implements file handling.
##
## **See also:**
## * `paths module <paths.html>`_ for path manipulation
from paths import Path, ReadDirEffect, WriteDirEffect

View File

@@ -1,4 +1,7 @@
## This module implements path handling.
##
## **See also:**
## * `files module <files.html>`_ for file access
import std/private/osseps
export osseps