Skip to content

Commit

Permalink
Move _unicode and _unicode_lookups to utils
Browse files Browse the repository at this point in the history
Signed-off-by: Maxim Zaks <maxim.zaks@gmail.com>
  • Loading branch information
mzaks committed Sep 19, 2024
1 parent d40c28a commit 258a088
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Build directory
/build
.magic
install_id

# Reference: https://github.com/github/gitignore/blob/main/Python.gitignore

Expand Down
7 changes: 6 additions & 1 deletion stdlib/src/collections/string.mojo
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,12 @@ from utils import (
from utils.format import ToFormatter
from utils.string_slice import _utf8_byte_type, _StringSliceIter

from ._unicode import is_lowercase, is_uppercase, to_lowercase, to_uppercase
from utils._unicode import (
is_lowercase,
is_uppercase,
to_lowercase,
to_uppercase,
)

# ===----------------------------------------------------------------------=== #
# ord
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit 258a088

Please sign in to comment.