From 5804aa020452c9fe115c53ce9514b442945832bb Mon Sep 17 00:00:00 2001 From: Damien George Date: Thu, 23 Nov 2023 13:47:08 +1100 Subject: [PATCH] docs/reference/micropython2_migration.rst: Add info about os and vfs. Signed-off-by: Damien George --- docs/reference/micropython2_migration.rst | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/docs/reference/micropython2_migration.rst b/docs/reference/micropython2_migration.rst index 954488b8cd..3a11471140 100644 --- a/docs/reference/micropython2_migration.rst +++ b/docs/reference/micropython2_migration.rst @@ -71,4 +71,11 @@ which is useful for development and testing. Changes ~~~~~~~ -*None yet* +Introduction of a new module :mod:`vfs`. The following functions and +classes have moved out of :mod:`os` to :mod:`vfs`: +- `os.mount` +- `os.umount` +- `os.VfsFat` +- `os.VfsLfs1` +- `os.VfsLfs2` +- `os.VfsPosix`