Skip to content

Commit e975ca3

Browse files
authored
Move cudf._lib.copying to cudf.core._internals (#17548)
Contributes to #17317 Also I found that `PackedColumns` was not being use anywhere. It appears it was added back in #8153 for dask_cudf but I cannot see it being used there anymore Authors: - Matthew Roeschke (https://github.com/mroeschke) Approvers: - Vyas Ramasubramani (https://github.com/vyasr) URL: #17548
1 parent 469f226 commit e975ca3

21 files changed

+275
-896
lines changed

python/cudf/cudf/_lib/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# the License.
1313
# =============================================================================
1414

15-
set(cython_sources column.pyx copying.pyx groupby.pyx interop.pyx scalar.pyx stream_compaction.pyx
15+
set(cython_sources column.pyx groupby.pyx interop.pyx scalar.pyx stream_compaction.pyx
1616
string_casting.pyx strings_udf.pyx types.pyx utils.pyx
1717
)
1818
set(linked_libraries cudf::cudf)

python/cudf/cudf/_lib/__init__.py

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
import numpy as np
33

44
from . import (
5-
copying,
65
groupby,
76
interop,
87
stream_compaction,

0 commit comments

Comments
 (0)