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

6 statements  

1"""Common type definitions for Dulwich.""" 

2 

3import sys 

4 

5if sys.version_info >= (3, 12): 

6 from collections.abc import Buffer 

7else: 

8 Buffer = bytes | bytearray | memoryview 

9 

10__all__ = ["Buffer"]