Commits


Patrick Hoefler authored and GitHub committed 1140a53f51a
GH-34703: [Python] Set copy=False explicitly when creating a pandas Series (#34593) ### Rationale for this change pandas will change the default for creating a Series from an array (numpy, arrow, ...) to copy=True when Copy-on-Write is enabled. To avoid this when using it internally, we have to specify copy=False explicitly. ### What changes are included in this PR? Setting copy=False when creating a Series ### Are these changes tested? This is equivalent to the current default behavior, so no reason to add any additional tests. ### Are there any user-facing changes? no cc @ jorisvandenbossche * Closes: #34703 Authored-by: Patrick Hoefler <61934744+phofl@users.noreply.github.com> Signed-off-by: Alenka Frim <frim.alenka@gmail.com>