blob: 4284c1266c6d646e545e0e6e0a1b9a712adf64e3 (
plain)
1
2
3
4
5
6
7
8
9
|
---
tags:
- python
---
The buffer protocol provides access to underlying memory buffer.
The producer is the type that wraps a buffer and implements the "buffer interface" through which they export data about the underlying buffer.
The consumer is who gains access to the underlying buffer.
|