Skip to content

Commit 4b8a545

Browse files
committed
Fixed doc formatting and others
1 parent 62f2eae commit 4b8a545

3 files changed

Lines changed: 10 additions & 14 deletions

File tree

README_DEVELOPERS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ If you want to run the network tests, you can use the following command:
9696
## wasm32 / Pyodide developer workflow
9797

9898
For the local wasm32 workflow (uv + pyodide-build + cibuildwheel + test loop),
99-
use the repo skill at `.codex/skills/wasm32-pyodide-dev/SKILL.md`.
99+
use the repo skill at `.skills/wasm32-pyodide-dev/SKILL.md`.
100100

101101
Install it into Codex discovery with:
102102

scripts/install-codex-skill-wasm32.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ while [[ $# -gt 0 ]]; do
3131
done
3232

3333
repo_root="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
34-
src_skill="${repo_root}/.codex/skills/wasm32-pyodide-dev"
34+
src_skill="${repo_root}/.skills/wasm32-pyodide-dev"
3535
codex_home="${CODEX_HOME:-${HOME}/.codex}"
3636
dst_skill="${codex_home}/skills/wasm32-pyodide-dev"
3737

src/blosc2/lazyexpr.py

Lines changed: 8 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -4178,12 +4178,10 @@ def lazyudf(
41784178
in :paramref:`inputs`.
41794179
- `output`: The buffer to be filled as a multidimensional numpy.ndarray.
41804180
- `offset`: The multidimensional offset corresponding to the start of the block being computed:
4181-
```
4182-
def myudf(inputs_tuple, output, offset):
4183-
x, y = inputs_tuple
4184-
...
4185-
output[:] = result
4186-
```
4181+
def myudf(inputs_tuple, output, offset):
4182+
x, y = inputs_tuple
4183+
...
4184+
output[:] = result
41874185
inputs: Sequence[Any] or None
41884186
The sequence of inputs. Besides objects compliant with the blosc2.Array protocol,
41894187
any other object is supported too, and it will be passed as-is to the
@@ -4208,12 +4206,10 @@ def myudf(inputs_tuple, output, offset):
42084206
last one will ignore the `urlpath` parameter passed in this function.
42094207
In addition, one may provide ``in_place``, a bool (default False), which indicates whether
42104208
the function should modify the output directly, (rather than chunks of the output, which are later written to output):
4211-
```
4212-
def inplace_udf(inputs_tuple, output, offset):
4213-
x, y = inputs_tuple
4214-
...
4215-
out[3] += 1
4216-
```
4209+
def inplace_udf(inputs_tuple, output, offset):
4210+
x, y = inputs_tuple
4211+
...
4212+
out[3] += 1
42174213
42184214
Returns
42194215
-------

0 commit comments

Comments
 (0)