Skip to content

Commit

Permalink
style
Browse files Browse the repository at this point in the history
  • Loading branch information
brandon-b-miller committed May 31, 2024
1 parent 98aeefa commit 936e412
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# Copyright (c) 2022, NVIDIA CORPORATION.
# Copyright (c) 2022-2024, NVIDIA CORPORATION.

from libc.stdint cimport int32_t


cdef extern from "cudf/strings/regex/flags.hpp" \
namespace "cudf::strings" nogil:

Expand Down
3 changes: 2 additions & 1 deletion python/cudf/cudf/_lib/pylibcudf/strings/regex_flags.pyx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# Copyright (c) 2024, NVIDIA CORPORATION.

from cudf._lib.pylibcudf.libcudf.strings.regex_flags import regex_flags as RegexFlags # no-cython-lint
from cudf._lib.pylibcudf.libcudf.strings.regex_flags import \
regex_flags as RegexFlags # no-cython-lint
4 changes: 3 additions & 1 deletion python/cudf/cudf/_lib/pylibcudf/strings/regex_program.pxd
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
# Copyright (c) 2024, NVIDIA CORPORATION.

from libcpp.string cimport string
from libcpp.memory cimport unique_ptr
from libcpp.string cimport string

from cudf._lib.pylibcudf.libcudf.strings.regex_program cimport regex_program


cdef class RegexProgram:
cdef unique_ptr[regex_program] c_obj

0 comments on commit 936e412

Please sign in to comment.