File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -114,7 +114,7 @@ PyInit__version(void)
114
114
return NULL ;
115
115
116
116
#ifdef Py_GIL_DISABLED
117
- PyUnstable_Module_SetGIL (mod , Py_MOD_GIL_NOT_USED );
117
+ PyUnstable_Module_SetGIL (module , Py_MOD_GIL_NOT_USED );
118
118
#endif
119
119
120
120
return module ;
Original file line number Diff line number Diff line change @@ -519,7 +519,7 @@ PyInit__block(void)
519
519
PyModule_AddObject (module , "LZ4BlockError" , LZ4BlockError );
520
520
521
521
#ifdef Py_GIL_DISABLED
522
- PyUnstable_Module_SetGIL (mod , Py_MOD_GIL_NOT_USED );
522
+ PyUnstable_Module_SetGIL (module , Py_MOD_GIL_NOT_USED );
523
523
#endif
524
524
525
525
return module ;
Original file line number Diff line number Diff line change @@ -1678,7 +1678,7 @@ PyInit__frame(void)
1678
1678
PyModule_AddIntConstant (module , "BLOCKSIZE_MAX4MB" , LZ4F_max4MB );
1679
1679
1680
1680
#ifdef Py_GIL_DISABLED
1681
- PyUnstable_Module_SetGIL (mod , Py_MOD_GIL_NOT_USED );
1681
+ PyUnstable_Module_SetGIL (module , Py_MOD_GIL_NOT_USED );
1682
1682
#endif
1683
1683
1684
1684
return module ;
Original file line number Diff line number Diff line change @@ -1650,7 +1650,7 @@ PyInit__stream(void)
1650
1650
PyModule_AddObject (module , "LZ4StreamError" , LZ4StreamError );
1651
1651
1652
1652
#ifdef Py_GIL_DISABLED
1653
- PyUnstable_Module_SetGIL (mod , Py_MOD_GIL_NOT_USED );
1653
+ PyUnstable_Module_SetGIL (module , Py_MOD_GIL_NOT_USED );
1654
1654
#endif
1655
1655
1656
1656
return module ;
You can’t perform that action at this time.
0 commit comments