aboutsummaryrefslogtreecommitdiff
path: root/docs/api.rst
diff options
context:
space:
mode:
Diffstat (limited to 'docs/api.rst')
-rw-r--r--docs/api.rst40
1 files changed, 0 insertions, 40 deletions
diff --git a/docs/api.rst b/docs/api.rst
deleted file mode 100644
index 9d49ef4..0000000
--- a/docs/api.rst
+++ /dev/null
@@ -1,40 +0,0 @@
-API Notes
-=========
-
-With ``pyfakefs 3.4``, the public API has changed to be PEP-8 conform.
-The old API is deprecated, and will be removed in some future version of
-pyfakefs.
-You can suppress the deprecation warnings for legacy code with the following
-code:
-
-.. code:: python
-
- from pyfakefs.deprecator import Deprecator
-
- Deprecator.show_warnings = False
-
-Here is a list of selected changes:
-
-:pyfakefs.fake_filesystem.FakeFileSystem:
-
- CreateFile() -> create_file()
-
- CreateDirectory() -> create_dir()
-
- CreateLink() -> create_symlink()
-
- GetDiskUsage() -> get_disk_usage()
-
- SetDiskUsage() -> set_disk_usage()
-
-:pyfakefs.fake_filesystem.FakeFile:
-
- GetSize(), SetSize() -> size (property)
-
- SetContents() -> set_contents()
-
- SetATime() -> st_atime (property)
-
- SetMTime() -> st_mtime (property)
-
- SetCTime() -> st_ctime (property)