Skip to content

Commit

Permalink
I will become the next package
Browse files Browse the repository at this point in the history
  • Loading branch information
kg583 committed Sep 28, 2023
1 parent 1d724a0 commit 298ab0e
Show file tree
Hide file tree
Showing 11 changed files with 57 additions and 1 deletion.
5 changes: 5 additions & 0 deletions tivars/PIL/TI8caPlugin.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
"""
Plugin for `.8ca` files (`TIImage`)
"""


from tivars import TIImage
from .common import *

Expand Down
5 changes: 5 additions & 0 deletions tivars/PIL/TI8ciPlugin.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
"""
Plugin for `.8ci` files (`TIPicture`)
"""


from tivars import TIPicture
from .common import *

Expand Down
5 changes: 5 additions & 0 deletions tivars/PIL/TI8xiPlugin.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
"""
Plugin for `.8xi` files (`TIMonoPicture`)
"""


from tivars import TIMonoPicture
from .common import *

Expand Down
5 changes: 5 additions & 0 deletions tivars/PIL/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
"""
PIL plugin to support TI pictures and images
"""


from .TI8xiPlugin import TI8xiImageFile
from .TI8ciPlugin import TI8ciImageFile
from .TI8caPlugin import TI8caImageFile
7 changes: 6 additions & 1 deletion tivars/PIL/common.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
"""
Common import for PIL plugins
"""


import numpy as np
import warnings

Expand Down Expand Up @@ -57,7 +62,7 @@ def _save(cls, im, fp, format=None, **params):
:param im: The image to save
:param fp: The file pointer
:param format: The format to save with (defaults to the image's known format)
:param format: The format to save with (defaults to the image's known format) (unused)
:param params: Additional encoder parameters (empty)
"""

Expand Down
5 changes: 5 additions & 0 deletions tivars/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
"""
A library for interacting with TI-(e)z80 (82/83/84 series) calculator files
"""


from .tokenizer import *
from .types import *
from .models import *
Expand Down
5 changes: 5 additions & 0 deletions tivars/models/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
"""
Utilities for managing calc models and OS versions
"""


from .model import *
from .versions import *

Expand Down
5 changes: 5 additions & 0 deletions tivars/models/model.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
"""
Model and feature definitions
"""


import os

from functools import total_ordering
Expand Down
5 changes: 5 additions & 0 deletions tivars/models/versions.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
"""
OS version definitions
"""


import tivars.tokenizer.tokens.scripts.parse as parse

from .model import *
Expand Down
5 changes: 5 additions & 0 deletions tivars/tokenizer/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
"""
Tokenization utilities derived from the token sheets
"""


from typing import ByteString

from tivars.data import String
Expand Down
6 changes: 6 additions & 0 deletions tivars/types/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
"""
Parsers for the TI var types
"""


# Makes pydoctor happy
from typing import TYPE_CHECKING

from .appvar import *
Expand Down

0 comments on commit 298ab0e

Please sign in to comment.