Add module docstrings

This commit is contained in:
kris 2019-03-21 16:42:47 +00:00
parent 5d4148daaf
commit cf493e782c
8 changed files with 16 additions and 0 deletions

View File

@ -1,3 +1,5 @@
"""Encodes input audio stream into sequence of speaker duty cycle counts."""
from typing import Iterator
import audioread

View File

@ -1,3 +1,5 @@
"""Computes visual differences between screen image data."""
import functools
import numpy as np

View File

@ -1,3 +1,5 @@
"""Opcodes representing discrete operations of video player."""
import enum
from typing import Iterator, Tuple

View File

@ -1,3 +1,5 @@
"""Tests for the opcodes module."""
import unittest
import opcodes

View File

@ -1,3 +1,5 @@
"""Parses the cc65 .dbg output to extract symbol addresses."""
from typing import Dict

View File

@ -1,3 +1,5 @@
"""Tests for the symbol_table module."""
import io
import unittest

View File

@ -1,3 +1,5 @@
"""Encode a sequence of images as an optimized stream of screen changes."""
import heapq
import os
import queue

View File

@ -1,3 +1,5 @@
"""Tests for the video module."""
import unittest
import video