summaryrefslogtreecommitdiff
path: root/_doc/basicuse.ryd
diff options
context:
space:
mode:
Diffstat (limited to '_doc/basicuse.ryd')
-rw-r--r--_doc/basicuse.ryd10
1 files changed, 2 insertions, 8 deletions
diff --git a/_doc/basicuse.ryd b/_doc/basicuse.ryd
index 0b0acf5..ca5139b 100644
--- a/_doc/basicuse.ryd
+++ b/_doc/basicuse.ryd
@@ -15,12 +15,6 @@ data = dict(a=1)
Basic Usage
***********
-*This is the new (0.15+) interface for ``ruamel.yaml``, it is still in
-the process of being fleshed out*. Please pin your dependency to
-``ruamel.yaml<0.15`` for production software.
-
-------
-
You load a YAML document using::
--- !python |
from ruamel.yaml import YAML
@@ -33,8 +27,8 @@ in this ``doc`` can be a file pointer (i.e. an object that has the
``.read()`` method, a string or a ``pathlib.Path()``. ``typ='safe'``
accomplishes the same as what ``safe_load()`` did before: loading of a
document without resolving unknown tags. Provide ``pure=True`` to
-enforce using the pure Python implementation (faster C libraries will be used
-when possible/available)
+enforce using the pure Python implementation, otherwise the faster C libraries will be used
+when possible/available but these behave slightly different (and sometimes more like a YAML 1.1 loader).
Dumping works in the same way::
--- !code |