@@ -146,7 +146,6 @@ static PyMemberDef ZstdDict_members[] = {
146
146
};
147
147
148
148
/*[clinic input]
149
- @critical_section
150
149
@getter
151
150
_zstd.ZstdDict.as_digested_dict
152
151
@@ -163,13 +162,12 @@ Pass this attribute as zstd_dict argument: compress(dat, zstd_dict=zd.as_digeste
163
162
164
163
static PyObject *
165
164
_zstd_ZstdDict_as_digested_dict_get_impl (ZstdDict * self )
166
- /*[clinic end generated code: output=09b086e7a7320dbb input=585448c79f31f74a ]*/
165
+ /*[clinic end generated code: output=09b086e7a7320dbb input=10cd2b6165931b77 ]*/
167
166
{
168
167
return Py_BuildValue ("Oi" , self , DICT_TYPE_DIGESTED );
169
168
}
170
169
171
170
/*[clinic input]
172
- @critical_section
173
171
@getter
174
172
_zstd.ZstdDict.as_undigested_dict
175
173
@@ -184,13 +182,12 @@ Pass this attribute as zstd_dict argument: compress(dat, zstd_dict=zd.as_undiges
184
182
185
183
static PyObject *
186
184
_zstd_ZstdDict_as_undigested_dict_get_impl (ZstdDict * self )
187
- /*[clinic end generated code: output=43c7a989e6d4253a input=022b0829ffb1c220 ]*/
185
+ /*[clinic end generated code: output=43c7a989e6d4253a input=11e5f5df690a85b4 ]*/
188
186
{
189
187
return Py_BuildValue ("Oi" , self , DICT_TYPE_UNDIGESTED );
190
188
}
191
189
192
190
/*[clinic input]
193
- @critical_section
194
191
@getter
195
192
_zstd.ZstdDict.as_prefix
196
193
@@ -205,7 +202,7 @@ Pass this attribute as zstd_dict argument: compress(dat, zstd_dict=zd.as_prefix)
205
202
206
203
static PyObject *
207
204
_zstd_ZstdDict_as_prefix_get_impl (ZstdDict * self )
208
- /*[clinic end generated code: output=6f7130c356595a16 input=09fb82a6a5407e87 ]*/
205
+ /*[clinic end generated code: output=6f7130c356595a16 input=b028e0ae6ec4292b ]*/
209
206
{
210
207
return Py_BuildValue ("Oi" , self , DICT_TYPE_PREFIX );
211
208
}
0 commit comments