Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.11/site-packages/dulwich/_typing.py: 67%
Shortcuts on this page
r m x toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
Shortcuts on this page
r m x toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1"""Common type definitions for Dulwich."""
3import sys
5if sys.version_info >= (3, 12):
6 from collections.abc import Buffer
7else:
8 Buffer = bytes | bytearray | memoryview
10__all__ = ["Buffer"]