File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -1167,7 +1167,7 @@ getargs_K(PyObject *self, PyObject *args)
1167
1167
}
1168
1168
1169
1169
/* This function not only tests the 'k' getargs code, but also the
1170
- PyLong_AsUnsignedLongMask() and PyLong_AsUnsignedLongMask() functions . */
1170
+ PyLong_AsUnsignedLongMask() function . */
1171
1171
static PyObject *
1172
1172
test_k_code (PyObject * self )
1173
1173
{
@@ -1205,7 +1205,8 @@ test_k_code(PyObject *self)
1205
1205
value = PyLong_AsUnsignedLongMask (num );
1206
1206
if (value != (unsigned long )-0x42 )
1207
1207
return raiseTestError ("test_k_code" ,
1208
- "PyLong_AsUnsignedLongMask() returned wrong value for long 0xFFF...FFF" );
1208
+ "PyLong_AsUnsignedLongMask() returned wrong "
1209
+ "value for long -0xFFF..000042" );
1209
1210
1210
1211
PyTuple_SET_ITEM (tuple , 0 , num );
1211
1212
You can’t perform that action at this time.
0 commit comments