mirror of
https://github.com/KrisKennaway/ii-vision.git
synced 2024-12-21 05:30:20 +00:00
Add module docstrings
This commit is contained in:
parent
5d4148daaf
commit
cf493e782c
@ -1,3 +1,5 @@
|
||||
"""Encodes input audio stream into sequence of speaker duty cycle counts."""
|
||||
|
||||
from typing import Iterator
|
||||
|
||||
import audioread
|
||||
|
@ -1,3 +1,5 @@
|
||||
"""Computes visual differences between screen image data."""
|
||||
|
||||
import functools
|
||||
|
||||
import numpy as np
|
||||
|
@ -1,3 +1,5 @@
|
||||
"""Opcodes representing discrete operations of video player."""
|
||||
|
||||
import enum
|
||||
from typing import Iterator, Tuple
|
||||
|
||||
|
@ -1,3 +1,5 @@
|
||||
"""Tests for the opcodes module."""
|
||||
|
||||
import unittest
|
||||
|
||||
import opcodes
|
||||
|
@ -1,3 +1,5 @@
|
||||
"""Parses the cc65 .dbg output to extract symbol addresses."""
|
||||
|
||||
from typing import Dict
|
||||
|
||||
|
||||
|
@ -1,3 +1,5 @@
|
||||
"""Tests for the symbol_table module."""
|
||||
|
||||
import io
|
||||
import unittest
|
||||
|
||||
|
@ -1,3 +1,5 @@
|
||||
"""Encode a sequence of images as an optimized stream of screen changes."""
|
||||
|
||||
import heapq
|
||||
import os
|
||||
import queue
|
||||
|
@ -1,3 +1,5 @@
|
||||
"""Tests for the video module."""
|
||||
|
||||
import unittest
|
||||
|
||||
import video
|
||||
|
Loading…
Reference in New Issue
Block a user