Skip to content

Commit 3d74ee2

Browse files
authored
Move back isascii() from Unicode to Base (#25076)
This function is not really Unicode-related and its definition does not depend on the Unicode standard version. This fixes a bug introduced when moving isascii() to Base.Unicode, as it was not exported from Unicode stdlib module as it should have been.
1 parent 03e0da4 commit 3d74ee2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Distributed.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ using Base: Process, Semaphore, JLOptions, AnyDict, buffer_writes, wait_connecte
1717
binding_module, notify_error, atexit, julia_exename, julia_cmd,
1818
AsyncGenerator, acquire, release, invokelatest,
1919
shell_escape_posixly, uv_error, coalesce, notnothing
20-
using Base.Unicode: isascii, isdigit, isnumeric
20+
using Base.Unicode: isdigit, isnumeric
2121

2222
# NOTE: clusterserialize.jl imports additional symbols from Base.Serializer for use
2323

0 commit comments

Comments
 (0)