Exact composition of Python slices
Project description
slicecompose
Exact composition of Python slices — pure Python, standard library only.
compose(*slices) returns a slice s such that arr[s1][s2]...[sk] == arr[s] for every sequence arr (every length, including 0), or None
if no such slice exists. Both directions of the decision are exact, for any
number of slices:
- Sound — a returned slice is equivalent for all lengths, not just tested ones.
- Complete —
Noneis returned only when no equivalent single slice exists.
>>> from slicecompose import compose, SliceChain
>>> compose(slice(2, None), slice(3, None)) # arr[2:][3:] == arr[5:]
slice(5, None, None)
>>> compose(slice(None, None, -1), slice(None, 1)) # arr[::-1][:1]: the last element
slice(None, -2, -1)
>>> compose(slice(-2, None), slice(None, 1)) # arr[-2:][:1] == arr[-2::2]
slice(-2, None, 2)
>>> compose(slice(None, None, 2), slice(None, None, -1)) is None
True
>>> compose(slice(2, None, -1), slice(None, 2), slice(None, -1)) # k-ary
slice(2, 0, -2)
The last pair really has no equivalent: arr[::2][::-1] starts at index
n-1 for odd n but n-2 for even n, and no fixed slice can depend on
the parity of the length. Where several slices are equivalent, compose
returns one of them: in the second example it picks [:-2:-1], which selects
the last element just like [-1:]. The third example shows the opposite surprise: the
result must select the single element at index max(0, n-2), which no
"obvious" candidate like [-2:-1] does (it is empty at n == 1) — but
[-2::2] does, for every n.
Why this is harder than plugging into slice.indices(): the answer must be
a fixed slice that works universally, without knowing the length of the
sequence it will be applied to. Clamping, negative indices, and the
sign-dependent defaults make the composed selection a piecewise function of
the length; compose decides exactly whether that function is realizable by
a single slice.
API
compose(*slices) -> slice | None
The core decision procedure described above, for any number of slices. Accepts any valid slice objects, including huge field values (no ranges are ever materialized; everything is decided arithmetically). The k-ary form is strictly stronger than iterated pairwise composition: in the last example above, neither adjacent pair is expressible on its own — only the whole triple is, and no sequence of pairwise merges can discover that.
SliceChain(*slices)
Container for a sequence of slices applied in order, e.g.
seq[s0][s1]...[sk].
- On construction the chain is reduced to a minimal-length equivalent
chain: every contiguous sub-chain's expressibility is decided directly
with the k-ary
composeand a shortest partition into expressible blocks is chosen (e.g.[::2], [::-1], [::-1]reduces to[::2]). .slices— the reduced tuple of slices..apply(seq)— applies the (reduced) slices in order; correct whether or not any merging happened.
>>> ch = SliceChain(slice(None, None, 2), slice(None, None, -1), slice(None, None, -1))
>>> ch.slices
(slice(None, None, 2),)
>>> SliceChain(slice(2, None), slice(3, None)).apply("abcdefgh")
'fgh'
Because sub-chains are decided directly (never by searching merge orders),
the result is order-free and also covers reductions that are invisible to
pairwise merging — chains where no adjacent pair merges but a longer block
does. See EXPLANATION.md §§7–8 for the theory and verified examples.
SlicePlan / s_
Lazy plan building with ordinary bracket notation. s_ is the ready-made
empty plan; slicing a plan returns a new plan (the original is unchanged),
and nothing is computed while slices are gathered. On the first query —
.slices, .slice, .apply(seq), ==/hash — the plan reduces its
stored chain in place and remembers that it did, so the reduction runs at
most once per batch of gathered slices.
>>> from slicecompose import s_
>>> s_[2:][3:].slice
slice(5, None, None)
>>> plan = s_[100:]
>>> plan[::2].slices # branching; plan itself is unchanged
(slice(100, None, 2),)
>>> s_[::2][::-1].slice is None # irreducible pairs stay a chain
True
>>> s_[::2][::-1].apply(tuple(range(9)))
(8, 6, 4, 2, 0)
This is aimed at expensive media (video streams, remote arrays): build the access plan symbolically with normal slicing syntax, reduce it, and only then touch the data. A reduced slice needs no length to be executed — its anchors are only "offset from the front" and "offset from the end" — so the plan works even when the element count is unknown or unreliable.
Correctness
EXPLANATION.md contains the full argument for why the implementation is
sound and complete for every length — the infinite quantification over n
is reduced to finitely many exact checks (regime breakpoints, per-stretch
staircase/sawtooth normal forms, an exact verifier, and profile-forced
candidate generation). Returned slices are always validated by the exact
verifier, so soundness does not rest on the candidate generator.
The test suite (test_slicecompose.py) additionally audits both failure
modes empirically: exhaustive small-field grids checked for wrong merges by
brute force and for missed merges against large candidate tables, huge-field
randomized soundness checks, structural consistency probes, and the problem
statement's examples.
Installation
pip install slicecompose # from PyPI, once published
pip install . # from a checkout
Pure Python, no dependencies.
Running the tests
pytest # quick tier, ~30 s
SLICECOMPOSE_FULL=1 pytest # exhaustive grids, ~35 min
verify_examples.py independently re-checks the examples claimed in
PROBLEM.md by direct evaluation.
Files
| file | contents |
|---|---|
src/slicecompose/ |
the library (compose, SlicePlan/s_, SliceChain) |
tests/test_slicecompose.py |
test suite (quick and exhaustive tiers) |
PROBLEM.md |
the problem statement |
EXPLANATION.md |
soundness/completeness argument |
verify_examples.py |
standalone check of the problem's examples |
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file slicecompose-0.2.0.tar.gz.
File metadata
- Download URL: slicecompose-0.2.0.tar.gz
- Upload date:
- Size: 42.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e2fe5996a668eb3d55c8ee0dbf86bf68381bcf0025b95a9be61bd01f13d40b28
|
|
| MD5 |
e9a230c73c9654af87091e471a4f4b5f
|
|
| BLAKE2b-256 |
674cb20d67e0e93cae3c5fea9b06d8f96144a2fa2128e06a4d0c6702ad7d182b
|
Provenance
The following attestation bundles were made for slicecompose-0.2.0.tar.gz:
Publisher:
python-publish.yml on isarandi/slicecompose
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
slicecompose-0.2.0.tar.gz -
Subject digest:
e2fe5996a668eb3d55c8ee0dbf86bf68381bcf0025b95a9be61bd01f13d40b28 - Sigstore transparency entry: 2188114314
- Sigstore integration time:
-
Permalink:
isarandi/slicecompose@0eedef315c3e9277b82a916064642b8506d625e4 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/isarandi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@0eedef315c3e9277b82a916064642b8506d625e4 -
Trigger Event:
release
-
Statement type:
File details
Details for the file slicecompose-0.2.0-py3-none-any.whl.
File metadata
- Download URL: slicecompose-0.2.0-py3-none-any.whl
- Upload date:
- Size: 18.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
156bd825a76fd9e74611c7d6e2c4aef8c105ba55cd5cbdd14204128f14e386f0
|
|
| MD5 |
2c1a14f8f97df22f087cc4f0630f4896
|
|
| BLAKE2b-256 |
a741d0551dc6c47dd03f623cef9b5ba85b3dad082065d6baf19cb3160469aea2
|
Provenance
The following attestation bundles were made for slicecompose-0.2.0-py3-none-any.whl:
Publisher:
python-publish.yml on isarandi/slicecompose
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
slicecompose-0.2.0-py3-none-any.whl -
Subject digest:
156bd825a76fd9e74611c7d6e2c4aef8c105ba55cd5cbdd14204128f14e386f0 - Sigstore transparency entry: 2188114326
- Sigstore integration time:
-
Permalink:
isarandi/slicecompose@0eedef315c3e9277b82a916064642b8506d625e4 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/isarandi
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@0eedef315c3e9277b82a916064642b8506d625e4 -
Trigger Event:
release
-
Statement type: