mirror of
https://github.com/python/cpython.git
synced 2025-10-08 08:01:55 +00:00
Fix stupib bug in concatenation
This commit is contained in:
parent
094885b0f0
commit
32be3a7a88
1 changed files with 1 additions and 1 deletions
|
@ -476,7 +476,7 @@ array_concat(a, bb)
|
|||
}
|
||||
memcpy(np->ob_item, a->ob_item, a->ob_size*a->ob_descr->itemsize);
|
||||
memcpy(np->ob_item + a->ob_size*a->ob_descr->itemsize,
|
||||
a->ob_item, a->ob_size*a->ob_descr->itemsize);
|
||||
b->ob_item, b->ob_size*b->ob_descr->itemsize);
|
||||
return (object *)np;
|
||||
#undef b
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue