Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 449 Bytes

glossary.rst

File metadata and controls

17 lines (12 loc) · 449 Bytes
orphan

Glossary

asynchronous file object

This is an object with an API identical to a file object, with the exception that all methods that do I/O are async functions.

The main ways to create an asynchronous file object are by using the trio.open_file function or the trio.Path.open method. See async-file-io for more details.