Skip to content

Commit 043590b

Browse files
committed
bpo-40077: fix
1 parent 58073f6 commit 043590b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Modules/_bz2module.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -735,7 +735,7 @@ BZ2Decompressor_dealloc(BZ2Decompressor *self)
735735
}
736736

737737
static int
738-
BZ2Decompressor_traverse(BZ2Compressor *self, visitproc visit, void *arg)
738+
BZ2Decompressor_traverse(BZ2Decompressor *self, visitproc visit, void *arg)
739739
{
740740
Py_VISIT(Py_TYPE(self));
741741
return 0;

0 commit comments

Comments
 (0)