Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit f32a5c6

Browse files
authoredAug 7, 2022
Merge pull request #46075 from JuliaLang/backports-release-1.8
release-1.8: Backports for 1.8-rc4
2 parents 843b322 + 50bbad7 commit f32a5c6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

91 files changed

+1672
-1061
lines changed
 

‎NEWS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,6 @@ New library features
111111
* `extrema` now accepts an `init` keyword argument ([#36265], [#43604]).
112112
* `Iterators.countfrom` now accepts any type that defines `+` ([#37747]).
113113
* `@time` now separates out % time spent recompiling invalidated methods ([#45015]).
114-
* `@time_imports` now shows any compilation and recompilation time percentages per import ([#45064]).
115114

116115
Standard library changes
117116
------------------------
@@ -147,7 +146,8 @@ Standard library changes
147146

148147
#### InteractiveUtils
149148

150-
* New macro `@time_imports` for reporting any time spent importing packages and their dependencies ([#41612]).
149+
* New macro `@time_imports` for reporting any time spent importing packages and their dependencies, highlighting
150+
compilation and recompilation time as percentages per import ([#41612],[#45064]).
151151

152152
#### LinearAlgebra
153153

‎base/Base.jl

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -292,9 +292,6 @@ include("process.jl")
292292
include("ttyhascolor.jl")
293293
include("secretbuffer.jl")
294294

295-
# RandomDevice support
296-
include("randomdevice.jl")
297-
298295
# core math functions
299296
include("floatfuncs.jl")
300297
include("math.jl")
@@ -484,8 +481,6 @@ end
484481

485482
if is_primary_base_module
486483
function __init__()
487-
# for the few uses of Libc.rand in Base:
488-
Libc.srand()
489484
# Base library init
490485
reinit_stdio()
491486
Multimedia.reinit_displays() # since Multimedia.displays uses stdout as fallback

0 commit comments

Comments
 (0)
Please sign in to comment.