Skip to content

Commit

Permalink
comment
Browse files Browse the repository at this point in the history
  • Loading branch information
sigmaSd committed Jul 14, 2024
1 parent 57aebe9 commit 579b3b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/python.ts
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,7 @@ export class PyObject {
return new PyObject(list);
} else if (v instanceof Callback) {
// https://docs.python.org/3/c-api/structures.html#c.PyMethodDef
// there extra 4 bytes of padding after ml_flags field
// there are extra 4 bytes of padding after ml_flags field
const pyMethodDef = new Uint8Array(8 + 8 + 4 + 4 + 8);
const view = new DataView(pyMethodDef.buffer);
const LE =
Expand Down

0 comments on commit 579b3b2

Please sign in to comment.