10000 bpo-46745: Fix typo in PositionsIterator (#31322) · python/cpython@482a4b6 · GitHub
[go: up one dir, main page]

Skip to content

Commit 482a4b6

Browse files
bpo-46745: Fix typo in PositionsIterator (#31322)
Co-authored-by: Jelle Zijlstra <jelle.zijlstra@gmail.com>
1 parent 8cb5f70 commit 482a4b6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Objects/codeobject.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1020,7 +1020,7 @@ positionsiter_next(positionsiterator* pi)
10201020

10211021
static PyTypeObject PositionsIterator = {
10221022
PyVarObject_HEAD_INIT(&PyType_Type, 0)
1023-
"poisitions_iterator", /* tp_name */
1023+
"positions_iterator", /* tp_name */
10241024
sizeof(positionsiterator), /* tp_basicsize */
10251025
0, /* tp_itemsize */
10261026
/* methods */

0 commit comments

Comments
 (0)
0