Skip to content

Commit

Permalink
pythonGH-100222: fix typo _py_set_opocde -> _py_set_opcode (pythonGH-…
Browse files Browse the repository at this point in the history
…100259)

Typo introduced in python#100223.

Automerge-Triggered-By: GH:brandtbucher
  • Loading branch information
carljm authored Dec 15, 2022
1 parent ae83c78 commit bdd8674
Show file tree
Hide file tree
Showing 2 changed files with 66 additions and 66 deletions.
2 changes: 1 addition & 1 deletion Include/cpython/code.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ typedef union {
#define _Py_OPARG(word) ((word).oparg)

static inline void
_py_set_opocde(_Py_CODEUNIT *word, uint8_t opcode)
_py_set_opcode(_Py_CODEUNIT *word, uint8_t opcode)
{
word->opcode = opcode;
}
Expand Down
Loading

0 comments on commit bdd8674

Please sign in to comment.