File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -380,9 +380,10 @@ Py_ssize_t NUM_BITS(Py_ssize_t bitsize) {
380
380
assert(NUM_BITS(size_arg) || (size_arg == (NBITS) / 8)); \
381
381
CTYPE val; \
382
382
if (PyLong_Check(value) \
383
- && PyUnstable_Long_IsCompact((PyLongObject *)value)) { \
383
+ && PyUnstable_Long_IsCompact((PyLongObject *)value)) \
384
+ { \
384
385
val = (CTYPE)PyUnstable_Long_CompactValue( \
385
- (PyLongObject *)value); \
386
+ (PyLongObject *)value); \
386
387
} \
387
388
else { \
388
389
Py_ssize_t res = PyLong_AsNativeBytes( \
@@ -884,7 +885,7 @@ u_get(void *ptr, Py_ssize_t size)
884
885
return PyUnicode_FromWideChar ((wchar_t * )ptr , 1 );
885
886
}
886
887
887
- /* U - a wchar_t* unicode string */
888
+ /* U: a wchar_t* unicode string */
888
889
static PyObject *
889
890
U_get (void * ptr , Py_ssize_t size )
890
891
{
You can’t perform that action at this time.
0 commit comments