File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1047,7 +1047,7 @@ test_k_code(PyObject *self)
1047
1047
value = PyLong_AsUnsignedLongMask (num );
1048
1048
if (value != ULONG_MAX )
1049
1049
return raiseTestError ("test_k_code" ,
1050
- "PyLong_AsUnsignedLongMask() returned wrong value for long 0xFFF...FFF" );
1050
+ "PyLong_AsUnsignedLongMask() returned wrong value for long 0xFFF...FFF" );
1051
1051
1052
1052
PyTuple_SET_ITEM (tuple , 0 , num );
1053
1053
@@ -1066,7 +1066,7 @@ test_k_code(PyObject *self)
1066
1066
value = PyLong_AsUnsignedLongMask (num );
1067
1067
if (value != (unsigned long )-0x42 )
1068
1068
return raiseTestError ("test_k_code" ,
1069
- "PyLong_AsUnsignedLongMask() returned wrong value for long 0xFFF...FFF" );
1069
+ "PyLong_AsUnsignedLongMask() returned wrong value for long 0xFFF...FFF" );
1070
1070
1071
1071
PyTuple_SET_ITEM (tuple , 0 , num );
1072
1072
Original file line number Diff line number Diff line change @@ -796,7 +796,7 @@ Py_NewInterpreter(void)
796
796
797
797
if (initstdio () < 0 )
798
798
Py_FatalError (
799
- "Py_Initialize: can't initialize sys standard streams" );
799
+ "Py_Initialize: can't initialize sys standard streams" );
800
800
initmain (interp );
801
801
if (!Py_NoSiteFlag )
802
802
initsite ();
You can’t perform that action at this time.
0 commit comments