Skip to content

Commit

Permalink
Add NEWS.md entry for dep of character predicate methods over strings (
Browse files Browse the repository at this point in the history
…#20342). (#21850)

(cherry picked from commit 3c81a18)
  • Loading branch information
Sacha0 authored and tkelman committed May 14, 2017
1 parent f2fcc03 commit 21d0cbe
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -441,6 +441,12 @@ Deprecated or removed
* Vectorized functions have been deprecated in favor of dot syntax ([#17302], [#17265],
[#18558], [#19711], [#19712], [#19791], [#19802], [#19931], [#20543], [#20228]).

* All methods of character predicates (`isalnum`, `isalpha`, `iscntrl`, `isdigit`,
`isnumber`, `isgraph`, `islower`, `isprint`, `ispunct`, `isspace`, `isupper`,
`isxdigit`) that accept `AbstractStrings` have been deprecated in favor of `all`.
For example, `isnumber("123")` should now be expressed `all(isnumber, "123")`
([#20342]).

* The two-argument forms of `map` (`map!(f, A)`) and `asyncmap!` (`asyncmap!(f, A)`)
have been deprecated in anticipation of future semantic changes ([#19721]).

Expand Down Expand Up @@ -596,6 +602,7 @@ Command-line option changes
[#20327]: https://github.com/JuliaLang/julia/issues/20327
[#20328]: https://github.com/JuliaLang/julia/issues/20328
[#20330]: https://github.com/JuliaLang/julia/issues/20330
[#20342]: https://github.com/JuliaLang/julia/issues/20342
[#20345]: https://github.com/JuliaLang/julia/issues/20345
[#20403]: https://github.com/JuliaLang/julia/issues/20403
[#20404]: https://github.com/JuliaLang/julia/issues/20404
Expand Down

0 comments on commit 21d0cbe

Please sign in to comment.