You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
item 0 of 1st file, item 1 of 1st file, ... , item n of 1st file, # ...
450
+
item 0 of 2nd file, item 1 of 2nd file, ... , item n of 2nd file, # ...
451
+
# ....
452
+
item 0 of n-th file, item 1 of n-th file, ... , item n of n-th file, # ...
453
+
# ...
454
+
]
455
+
```
456
+
457
+
> ℹ️ **Note**
458
+
>
459
+
> - Only available when multiple files were matched.
460
+
> - **Every matched file should have a Sequence object in its top level**, or a `TypeError` exception may be thrown.
461
+
417
462
### Serialization
418
463
419
-
When load [YAML][] string with include statement, the including files are default parsed into python objects. Thant is, if we call `yaml.dump()` on the object, what dumped is the parsed python object, and can not serialize the include statement itself.
464
+
When load [YAML][] string with include statement, the including files are parsed into python objects by default. That is, if we call `yaml.dump()` on the object, what dumped is the parsed python object, and can not serialize the include statement itself.
420
465
421
-
To serialize the statement, we shall first create an `yaml_include.Constructor` object whose **`autoload` is `False`**:
466
+
To serialize the statement, we shall first create an `yaml_include.Constructor` object whose **`autoload` attribute is `False`**:
0 commit comments