mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-20 05:28:04 +00:00
129c6ec11a
Test vector saving implementation can go near loading implementation. Also we can separate out some simple types from the more complex logic. Initially this was to resolve a circular dependency but that ended up being resolved mostly by treatming SEGMENT_SIZE more like a parameter than a global. Still, smaller modules are okay...
29 lines
339 B
Python
29 lines
339 B
Python
__all__ = [
|
|
"DATA_PATH",
|
|
"CURRENT_VERSION",
|
|
"MAX_SHARES",
|
|
|
|
"Case",
|
|
"Sample",
|
|
"SeedParam",
|
|
"encode_bytes",
|
|
|
|
"capabilities",
|
|
]
|
|
|
|
from .vectors import (
|
|
DATA_PATH,
|
|
CURRENT_VERSION,
|
|
|
|
Case,
|
|
Sample,
|
|
SeedParam,
|
|
encode_bytes,
|
|
|
|
capabilities,
|
|
)
|
|
|
|
from .parameters import (
|
|
MAX_SHARES,
|
|
)
|