File: defs.py

package info (click to toggle)
zchunk 1.5.2%2Bds1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,704 kB
  • sloc: ansic: 13,244; python: 457; sh: 260; makefile: 13
file content (12 lines) | stat: -rw-r--r-- 222 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
"""Definitions for the Python zchunk tests."""

from __future__ import annotations

import typing


if typing.TYPE_CHECKING:
    from typing import Final


MAGIC: Final = bytes([0, ord("Z"), ord("C"), ord("K"), ord("1")])