From 7c05d6221c70cc4bc359d128ffc2730ea429e2d1 Mon Sep 17 00:00:00 2001 From: Milan Bouchet-Valat Date: Thu, 14 Dec 2017 15:35:55 +0100 Subject: [PATCH] Stop exporting isassigned() and normalize() from Unicode Since these conflict with functions from Base, they cannot be called without the module name anyway, and they make it impossible to call the functions from Base once 'using Unicode' has been called. --- stdlib/Unicode/src/Unicode.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stdlib/Unicode/src/Unicode.jl b/stdlib/Unicode/src/Unicode.jl index 82e2801eb32b2..59077acb6a79c 100644 --- a/stdlib/Unicode/src/Unicode.jl +++ b/stdlib/Unicode/src/Unicode.jl @@ -9,7 +9,7 @@ using Base.Unicode: normalize, graphemes, isassigned, textwidth, isvalid, iscntrl, ispunct, isspace, isprint, isgraph, lowercase, uppercase, titlecase, lcfirst, ucfirst -export normalize, graphemes, isassigned, textwidth, isvalid, +export graphemes, textwidth, isvalid, islower, isupper, isalpha, isdigit, isxdigit, isnumeric, isalnum, iscntrl, ispunct, isspace, isprint, isgraph, lowercase, uppercase, titlecase, lcfirst, ucfirst