swh:1:snp:a72e953ecd624a7df6e6196bbdd05851996c5e40

sort by:
Revision Author Date Message Commit Date
a04936e Set VERSION to 1.3.0-rc2 (#33200) 12 September 2019, 19:49:35 UTC
58803fe Merge pull request #32973 from JuliaLang/backports-release-1.3 WIP: Backports for 1.3-RC2 08 September 2019, 14:53:51 UTC
e69ce0f Normalize index to CartesianIndex in _modify! (#33187) (cherry picked from commit 6a20ad7eaa9da44088569dcd13596c619d026dd1) 08 September 2019, 07:24:05 UTC
965fc11 Bump Pkg for 1.3.0-rc2. (#33180) (cherry picked from commit f71f58e32d942648f829a2f1ee746d401eaf3213) 08 September 2019, 07:24:04 UTC
c63f70f Revert "Fix `repr` on `DateTime` (#30200)" This reverts commit 8d8b3d99bddffb3a581b8e337843304cbd857090. 06 September 2019, 10:07:46 UTC
a5539a0 Revert "Fix `repr` on `Period` Types, and `DateTime`, `Date` (#30817)" This reverts commit a7fabc91638064ebbad03831881b1459d4b92bd5. 06 September 2019, 10:01:43 UTC
8f662b5 Factor-out logic to determine the path of the precompilation cache file. (cherry picked from commit 2de79f7c49accb102353f9ad638c29c859ffc51a) 06 September 2019, 09:52:56 UTC
13bb8cc Fix `assert_havelock(::ReentrantLock)` to assert that the _current-task_ has the lock. (#33159) * Fix `assert_havelock(::ReentrantLock)` to assert that the _current-task_ has the lock. Before this commit, new threads would incorrectly believe that they held a lock on a Condition when they actually didn't, and would allow illegal operations, e.g. notify: ```julia julia> c = Threads.Condition() Base.GenericCondition{ReentrantLock}(Base.InvasiveLinkedList{Task}(nothing, nothing), ReentrantLock(nothing, Base.GenericCondition{Base.Threads.SpinLock}(Base.InvasiveLinkedList{Task}(nothing, nothing), Base.Threads.SpinLock(Base.Threads.Atomic{Int64}(0))), 0)) julia> lock(c) julia> fetch(Threads.@spawn Base.assert_havelock(c)) # This should be an ERROR (the new thread doesn't have the lock) julia> fetch(Threads.@spawn notify(c)) # This should be an ERROR (the new thread doesn't have the lock) 0 julia> fetch(Threads.@spawn wait(c)) # This error should be caught earlier (in assert_havelock). ERROR: TaskFailedException: unlock from wrong thread Stacktrace: [1] error(::String) at ./error.jl:33 [2] unlockall(::ReentrantLock) at ./lock.jl:121 [3] wait(::Base.GenericCondition{ReentrantLock}) at ./condition.jl:105 [4] (::var"##19#20")() at ./threadingconstructs.jl:113 ``` (The same holds for `@async` as `@spawn`.) After this change, the assertion works correctly: ``` julia> c = Threads.Condition(); julia> lock(c) julia> fetch(Threads.@spawn Base.assert_havelock(c)) # This correctly ERRORs ERROR: TaskFailedException: concurrency violation detected Stacktrace: [1] error(::String) at ./error.jl:33 [2] concurrency_violation() at ./condition.jl:8 [3] assert_havelock at ./condition.jl:28 [inlined] [4] assert_havelock at ./REPL[22]:1 [inlined] [5] assert_havelock(::Base.GenericCondition{ReentrantLock}) at ./condition.jl:73 [6] (::var"##21#22")() at ./threadingconstructs.jl:113 ``` Also adds unit test that failed before this commit but now succeeds * Remove default impl of `assert_havelock`; add `::SpinLock` impl (cherry picked from commit 784eb57a06aaab95bc4c22f288bd0c9f2b1687ca) 06 September 2019, 09:52:55 UTC
3e543a2 RNG: fix Sampler selection for GLOBAL_RNG (#33172) (cherry picked from commit 4c8cd3b8e56094015060905340371a9467209eba) 06 September 2019, 09:52:55 UTC
1eacbee Replace realpath implementation with libuv (#33116) (cherry picked from commit 921b4f84a13b0e1c637cff149dd3e16fb0333964) 05 September 2019, 08:21:04 UTC
2410981 fix #33135, wrong scope resolution with conflicting sparams and let vars (#33145) The static parameters of an outer scope should not be passed along to inner scopes; it instead needs to be handled by the lookup process iterating back to enclosing scopes. (cherry picked from commit 0fc3f039ee6e42f6a12c7d31ce54f02f6b79b5b2) 05 September 2019, 08:21:03 UTC
1d43fb6 Fix which behavior when passed an empty string (#33150) * Fix behavior of Sys.which when passed an empty String argument * Added test to check for fixed Sys.which behavior with empty string input * Added test to check that Sys.which returns nothing when passed a blank string * Ensure that Sys.which returns a regular file and never a directory * Moved new Sys.which tests into test/spawn.jl alongside the existing ones * Remove new which tests from test/sysinfo.jl (they've moved to test/spawn.jl) (cherry picked from commit fa235cc83ad13c301e1242ed1654429beaa5cb53) 05 September 2019, 08:21:03 UTC
46d0822 ccall: fix vararg count computation (#33123) (cherry picked from commit a9d4eacabae230d4ba5500078d50afc1eade2b57) 05 September 2019, 08:21:02 UTC
8c51a52 Bump libssh2 to `v1.9.0`, use MbedTLS on all platforms (#33089) * Bump libssh2 to `v1.9.0`, use MbedTLS on all platforms * Remove patches from source builds (cherry picked from commit d3250fe0057063bd57108883659b283be97bb75e) 03 September 2019, 20:10:00 UTC
5f214ab Workaround for performance penalty of splatting a number (#33108) (cherry picked from commit 4bf946a9cace1899e18f64ec53e3dd60b0b9f2b2) 03 September 2019, 20:09:59 UTC
eac42ce fix #33020, check axes for broadcasted assignment from tuples (#33080) We avoid computing axes for tuples -- which is a valuable optimization -- but when we explicitly construct a tuple broadcast with axes pre-set (for, e.g., broadcasted assignment), we need to check that those axes are compatible with the ones inside the broadcasted expression before accepting them. (cherry picked from commit b5c4e63db08a56f442b35ffd85a419c54c9c0cc1) 30 August 2019, 19:14:40 UTC
8e092f7 Fix Float16 conversion from large Float32s (#33084) Fixes #33076 (cherry picked from commit 7bc790491b69c97cdb938457578d005087f2697a) 30 August 2019, 19:13:26 UTC
f69b057 error instead of widening index types in sparse (#33083) Followup to https://github.com/JuliaLang/julia/pull/31724/files#r317686891; instead of widening the index type dynamically based upon the index vector length, just throw an error in the case where the index type cannot hold all the indices in a CSC format. This previously was an OOB access (and likely segfault) in 1.2, so throwing an error here is not a breaking change -- and throwing an error restores type stability, addressing the performance regression flagged in #32985. (cherry picked from commit 9725fb4c3f94ecf4f2264f2bcceb636562f17006) 27 August 2019, 07:34:26 UTC
9f39733 fix #32970, at-threads disabled after a loop errors (#33034) (cherry picked from commit 5c42f102acdf11595511f183e6d1ab1a89208757) 27 August 2019, 07:34:26 UTC
dbcc3dd Update unwind BB binaries for musl libc. (#33032) (cherry picked from commit e6dd72f7a6afbd28e779eb7786fdebead0b4fca7) 27 August 2019, 07:34:25 UTC
c0c8038 Upgrade `doc/make.jl` to introspect branch/tag names from git… (#32823) Upgrade `doc/make.jl` to introspect branch/tag names from git info (cherry picked from commit ad8cf8d8f7b2ca9f2612581a21283b14c7b22e7d) 26 August 2019, 19:31:50 UTC
27a12c8 fix performance regression in broadcasting in some cases (#33079) (cherry picked from commit 56fdb19aaad442d68fc9ea0c4759793a2265eb75) 26 August 2019, 19:25:27 UTC
8e66361 fix #32903, regression in Ctrl-C after adding io locks (#33031) (cherry picked from commit 7d65e13abc19e30f039e74aff63a9e0bf4f0538b) 26 August 2019, 19:25:26 UTC
41bd234 improve precompilation coverage (#33006) - move the place where --trace-compile outputs precompile statement to a location that catches more cases - tweak the REPL code to be more amenable to precompilation in light of - instead of trying to encode all the rules where the precompile emitter fails (#28808) just try to precompile and do nothing if it fails. (cherry picked from commit c0478d87df6182932b78738be97cc108f0f93248) 26 August 2019, 19:25:26 UTC
d7187e4 Disable BB `GMP` and `MPFR`, to fix performance regressions (cherry picked from commit 4c12b7a3fb07586b25e5244c90d1ede273ddab9a) 26 August 2019, 19:24:04 UTC
aac65c2 Fix LU doctest broken by #32989. (#33051) (cherry picked from commit 24f16115c6017f649139f3ad40b7c8e0db6b9166) 25 August 2019, 08:14:52 UTC
0905f7c improve performance of setindex! on IdDict (#33009) (cherry picked from commit d1979e335d8869a62c4d3f379e10c0ab68a5de64) 25 August 2019, 08:14:51 UTC
0d5848c Use pivoting as the default in LU regardless of the element type. (#32989) For types that weren't subtypes of AbstractFloat, we used to try to LU factorize without pivoting and only use pivoting when it failed. This caused large numerical errors when computing the LU for element types which promoted to float like numbers such as most integers. The behavior was never documented and is error prone. Hence, this PR removes the behavior. (cherry picked from commit 5af3c2a8b42f50c585667b53f158fc4db6cc19e4) 25 August 2019, 08:14:50 UTC
add5c78 Fix incorrect use of `isimmutable` (#33042) This function operates on values not on types (though it is a bit of a trap). Also add a test to catch this bug. (cherry picked from commit aee3fc2dc1a24431fc28a0024029e45cc3aa3b7d) 25 August 2019, 08:14:49 UTC
438632e Add missing checksums for libgit2 0.28 (#33022) (cherry picked from commit cd16f6e74cdb23f9986a387aef29b2f0631f5653) 25 August 2019, 08:14:48 UTC
f6e60ea Disallow var syntax in string interpolation (#32948) The var"##" syntax should be disabled in string interpolation. Disallow `var` syntax in command interpolations This is special cased for compatibility. A more general fix would be to make cmd interpolation syntax exactly the same as string interpolation. (cherry picked from commit 050160c2c6f410c6d68016a5acb141b9d51e6841) 25 August 2019, 08:14:47 UTC
e38bc7e Bump libgit2 to 0.28.2 (#32806) This allows dropping MbedTLS patches which have been upstreamed. The order in which configuration options are returned has changed, making a test fail: make the code more robust by giving priority to more specific options over global ones. (cherry picked from commit d0b5d9850fb7b51c7831d3897ad46e4d3478d322) 25 August 2019, 08:14:46 UTC
222fa90 Clarify the behavior of rand/randn for complex types (#33002) (cherry picked from commit fa641c628e993d880890ec1963a35686373d8b12) 25 August 2019, 08:14:45 UTC
f482cb4 fix and test that a certain broadcast pattern doesn't allocate (#33007) (cherry picked from commit 191f2aea9028b4183db1d9768ec5170db758580f) 25 August 2019, 08:14:43 UTC
2a1ab32 docs: prepend v to tag string (#32993) (cherry picked from commit 67234925efbac41f58249839ff03b4b9d36c1ec0) 25 August 2019, 08:14:42 UTC
b0d635e Fix AbstractQ conversion to different-typed matrix (#32979) (cherry picked from commit fcf90635899d8c51833e6c2d54145b1fb7487605) 25 August 2019, 08:14:41 UTC
1a19ae8 Bump Pkg version. (#32975) (cherry picked from commit 64be75fe3ae16217c74d34348cece0cf2fab8d01) 25 August 2019, 08:14:40 UTC
91ffdca Add missing `seed!(::_GLOBAL_RNG)` method (#32961) (cherry picked from commit 8ebe5643ca009af913c2a4b7b8707e2c0c7c69df) 20 August 2019, 08:33:44 UTC
768b25f Set VERSION to 1.3.0-rc1 (#32941) 18 August 2019, 00:04:33 UTC
19a2b2e add a note on checking for equality with singletons (#28700) * add a note on checking for equality with singletons 17 August 2019, 11:13:47 UTC
1fcadf7 remove unused ENV variable `JULIA_DEBUG_LOADING` from docs [ci skip] (#27262) 17 August 2019, 11:10:24 UTC
b0ff444 Profile,test: fix busy-wait test (#32933) When d7a90c0bbfa228e920d509f2639c364feade84d3 was added, it potentially reduced the sleep timeout to zero if we took a snapshot right away, unintentionally ensuring we did not have any samples inside Julia! fix #29880 and add a test for the empty printing case 17 August 2019, 03:26:04 UTC
d566caa Merge pull request #32929 from JuliaLang/jn/32031-corrected Corrected version of #32794 tests 17 August 2019, 03:25:07 UTC
cd6f059 Bump `Pkg` version to be `Artifact`-aware (#32918) * Bump `Pkg` version to be `Artifact`-aware This introduces the new `Pkg.Artifacts` subsystem into the standard library. * Fix `Pkg` doctests 17 August 2019, 02:57:30 UTC
b5f4e87 5-arg mul! bug fixes (#32901) * Enforce strong-zero behavior for alpha * Fix random tests for 5-arg mul! (avoid promotion in vector literal) * Always test `mul!` against `Matrix`/`Vector`'s `*` * Fix 5-arg mul! for Bi/Tri/Sym * Diag * Add tests with adjoint and transpose in random test * Test strong zero in random test * Fixing 5-arg mul! for Bi/Tri/Sym * Diag * Fixing strong zero test; handle UnitLowerTriangular etc. * Enforcing strong-zero behavior for alpha * Fixing strong zero test; handle Bidiagonal etc. * Fixing 5-arg mul! for Bi/Tri/Sym * Diag * Fixing 5-arg mul! for Bi/Tri/Sym * Diag * Include values of α and β in testset description * Handle empty sub-diagonal * Enforcing strong-zero behavior for alpha * Short-circuit multiplication by alpha 16 August 2019, 20:28:09 UTC
b51ae5b 1.3 NEWS edits (#32928) 16 August 2019, 20:17:27 UTC
6c59940 Merge branch 'master' into jn/32031-corrected 16 August 2019, 20:16:19 UTC
694d59a add an LRU cache for precompile files (#32651) instead of always clobbering the one precompile file per package for multiple environments, introduce a LRU cache (10 files that we cycle through). 16 August 2019, 18:08:00 UTC
9da7fbc Fix 32 bit overflows (#32908) 16 August 2019, 17:46:46 UTC
387eb80 fix overwritten unescape_string (#32925) 16 August 2019, 17:43:50 UTC
f716b40 Merge pull request #32776 from JuliaLang/jn/typemap-unsorting TypeMap: Cease trying to guarantee sorting 16 August 2019, 17:05:06 UTC
f32811d Improve stat error messages #32031 (#32794) Fixes #32030 16 August 2019, 16:28:14 UTC
634523f Improve stat error messages. Co-Authored-By: Jameson Nash <vtjnash@gmail.com> Fixes #32030 16 August 2019, 16:08:41 UTC
d28ffbf file test: reformat [nfc] 16 August 2019, 16:08:41 UTC
fb04178 `var"ident"` syntax for non-standard identifiers (#32408) Allow identifiers like Symbol("#example#") to be represented in julia code with the syntax `var"#example#"`. This needed support in the parser rather than being a string macro so that it could be used in any context where a normal identifier is allowed. Show nonstandard identifiers in Exprs with var"ident" syntax 16 August 2019, 16:00:37 UTC
c05864e fix ALWAYS_COPY_STACKS with threads (#32861) 16 August 2019, 11:51:44 UTC
9d7a5cf Add 0-argument anonymous function example to manual/functions (#32915) 16 August 2019, 11:02:29 UTC
13ac76a Improve printing of SVD factorization (#32919) * Improve printing of SVD factorization * Get rid of trailing whitespaces * Get rid of leading space in docs 16 August 2019, 07:11:23 UTC
8648053 download: add DOWNLOAD_HOOKS to rewrite URLs (close #32805) (#32917) 16 August 2019, 03:10:37 UTC
39c81e8 gf-cache: avoid listing equivalent types addresses an issue where we might be find an ambiguity with badly designed methods, such as the ambiguous Nothing/Missing rules (cf #31602) 16 August 2019, 02:49:27 UTC
f0e5f9e gf: improve check_ambiguous_visitor filtering relax the check here to more closely match the comment 16 August 2019, 02:49:27 UTC
06b4af4 dispatch: tolerate un-sorted tables and support non-transitive specificity 16 August 2019, 02:49:27 UTC
009a3f7 incremental performance: remove duplicated work during loading 16 August 2019, 02:07:06 UTC
3a22e1f isambiguous: fix has_bottom_parameter definition 16 August 2019, 02:07:06 UTC
1425225 rutils: jl_static_show of method-table robustness handle accidental cycles in the TypeMap->next list, and handle forward refernces in TypeMap->prev without excessive printing 16 August 2019, 02:07:06 UTC
a32f974 convert missing/nothing: fix previously undetected ambiguity in #31602 16 August 2019, 02:07:06 UTC
681dfdc Fix bug in SubstitutionString replace (#30513) 16 August 2019, 01:44:26 UTC
84deaec Add some xrefs to Libc docstrings (#32912) 16 August 2019, 01:04:26 UTC
4c4751d move all workarounds for #28808 to the same place in generate_precompile file (#32910) 15 August 2019, 23:06:58 UTC
af1979b Add Channel constructor keyword argument to `@spawn` new Task in parallel (#32872) Add a parameter to the Channel constructor to allow the Tasks it creates to be scheduled on multiple threads. Examples: ```julia # Spawn a Task to handle each input request ch = Channel{String}(0, spawn=true) do ch handle_request(ch, request) end ``` Adds a manual check that users don't use the `spawn=` keyword argument with the deprecated keyword arguments `ctype=` or `csize=`. 15 August 2019, 22:38:36 UTC
1f564ce some improvements to `summarysize`, fixes #32881 (#32886) - 0-field mutable structs take 1 word - take uniqueness into account for Strings - include union selector bytes for Arrays 15 August 2019, 22:02:13 UTC
4c0049c do not use myid() to differentiate master & worker (#32879) Occasionally while adding a large number of workers and particularly worker-worker connections are not lazy, it is possible to encounter the following error: ``` ERROR (unhandled task failure): MethodError: no method matching manage(::Base.Distributed.DefaultClusterManager, ::Int64, ::WorkerConfig, ::Symbol) Closest candidates are: manage(!Matched::Base.Distributed.SSHManager, ::Integer, ::WorkerConfig, ::Symbol) at distributed/managers.jl:224 manage(!Matched::Base.Distributed.LocalManager, ::Integer, ::WorkerConfig, ::Symbol) at distributed/managers.jl:337 manage(!Matched::Union{ClusterManagers.PBSManager, ClusterManagers.QRSHManager, ClusterManagers.SGEManager}, ::Int64, ::WorkerConfig, ::Symbol) at /home/jrun/.julia/v0.6/ClusterManagers/src/qsub.jl:115 ... Stacktrace: [1] deregister_worker(::Base.Distributed.ProcessGroup, ::Int64) at ./distributed/cluster.jl:903 [2] message_handler_loop(::TCPSocket, ::TCPSocket, ::Bool) at ./distributed/process_messages.jl:220 [3] process_tcp_streams(::TCPSocket, ::TCPSocket, ::Bool) at ./distributed/process_messages.jl:118 [4] (::Base.Distributed.##101#102{TCPSocket,TCPSocket,Bool})() at ./event.jl:73 ``` It can be simulated with this exact sequence of events: - worker2 in process of connecting to master - master has received the worker2s listen port, connected to it, sent the JoinPGRP message to it - master is now aware of worker2, and has added it to its list of workers - worker2 has still not processed the JoinPGRP message, so it is still unaware of its worker id - worker3 now connects to master - master sends the JoinPGRP message along with list of existing workers that includes worker2 - worker3 connects to worker2 - worker2 receives a new connection from worker3 and attempts to process it - worker3 faces an error and exits, thus breaking the connection - worker2 gets an error processing message from worker3 - goes into error handling - the current error handling code sees the self pid as 1 and incorrectly thinks it is the master - attempts to process the worker disconnection as a master and gets the error we see The MethodError prevents proper cleanup at the worker where it happens. The issue seems to be that it is not correct to identify whether a Julia process is master or worker by looking at the process id. Instead we should have a dedicated indicator for that. This change adds a new local process role variable that is set to `:master` by default, but is set to `:worker` when `start_worker` is invoked. This allows a process to know that it is running as a worker irrespective of whether it has received a process id or not. 15 August 2019, 22:00:44 UTC
53397c9 Tests for BitArray mmap (#32893) 15 August 2019, 21:59:52 UTC
d245df9 Merge branch 'juliohm-patch-1' 15 August 2019, 20:15:57 UTC
1e6d5f1 Export nonmissingtype (#31562) Fix #30657 15 August 2019, 20:15:27 UTC
ae4e08c add environment variable `JULIA_ALWAYS_COPY_STACKS` (#32885) Allows working around #31104 (JVM interop) 15 August 2019, 20:04:37 UTC
5e584fb `alg` keyword for svd and svd! (#31057) * alg keyword for LinearAlgebra.svd * SVDAlgorithms -> Algorithms * default_svd_alg * refined docstring Co-Authored-By: Andreas Noack <andreas@noack.dk> * rename to QRIteration; _svd! dispatch * compat annotation 15 August 2019, 19:24:42 UTC
0eabe22 remove unused and not-recommended `Threads.Mutex` (#32875) 15 August 2019, 16:49:59 UTC
b451d55 Add news and compat for mul!(C, A, B, α, β) (#32900) 15 August 2019, 10:34:06 UTC
c937638 Fix typos in NEWS.md (#32904) 15 August 2019, 08:04:06 UTC
7615d4c Implement multiply-add interface in LinearAlgebra (#29634) * Multiply-add interface for BLAS.herk! * Multiply-add interface for BLAS.syrk! * Multiply-add interface for gemv! * Fix UndefRefError from C[i,j] It may not be defined for Matrix{BigFloat}. * Multiply-add interface for BLAS.gemm! * Do not assume *(::Bool, ::eltype(C)) exists * Test multiply-add interface * Implement mul! in terms of addmul! * Document addmul! * Add multiply-add interface for symmetric matrices * Add multiply-add interface for Number and UniformScaling * Use lmul! for beta * C; eltype may not be commutative * Add _lmul_or_fill! * Add multiply-add interface for diagonal matrices * Add multiply-add interface for bi- and tri-diagonal matrices * Add multiply-add interface for triangular matrices * Test multiply-add interface in test/generic.jl * Fix addmul!(C, s::Number, X, alpha, beta) and addmul!(C, X, s::Number, alpha, beta) * Special-case alpha=1 beta=0 using type parameter * Test multiply-add interface in test/uniformscaling.jl * Test multiply-add interface in test/diagonal.jl * Use addmul! in SparseArrays * Systematically test addmul! * Make MulAddMul benchmark-friendly * Fix _modify! docstring * Use MulAddMul in A_mul_B_td! * Comment out broken test_broken * Relax rtol based on eltype of matrices A, B, C * Pass around MulAddMul instead of alpha and beta for type stability * Inline functions between *(::Matrix, ::Matrix) and gemm_wrapper! This is required for recovering the performance of current master. Checked with: A = [1. 0; 2 0] @benchmark $A * $A * Annotate argument type MulAddMul * Inline all addmul! * Construct MulAddMul outside A_mul_B_td! * Add multiply-add interface in test/tridiag.jl * Mention combined multiply-add in NEWS.md [ci skip] * Mention that mul!(C, A, B, α, β) is deprecated [ci skip] * Change API definition to C = ABα + Cβ * Fix indentation * Fix triangular.jl * Fix UndefRefError in multiplication with Diagonal * Define Base.convert(::Type{Quaternion{T}}, s::Real) This is required for testset "* and mul! for non-commutative scaling" in LinearAlgebra/test/generic.jl to pass. * Rename: addmul! -> mul! * Fix doctest * Workaround broadcast error with e.g., triangular matrix of BigFloat 14 August 2019, 21:32:00 UTC
f2c3d4d Add eachrow, eachcol, and eachslice to manual (#32882) These functions are all nicely documented but don't seem to appear in the manual. 14 August 2019, 21:03:10 UTC
314271b fix 32-bit overflow in hypot doc (#32896) 14 August 2019, 20:50:47 UTC
57a022f mktemp/dir: delete temp files on exit by default (#32851) The main change here is that the non-higher-order versions of mktemp/dir will now by default put the temp files/dirs that they create into a temp cleanup list which will be deleted upon process exit. Instead of putting lots of atexit handlers in the list, this uses a single handler and keeps a list of temporary paths to cleanup. If the list gets long (> 1024) it will be scanned for already-deleted paths when adding a new path to the cleanup list. To avoid running too frequently, it doubles the "too many paths" threshold after this. If cleanup fails for higher order `mktemp() do ... end` forms, they will also put their temp files/dirs in the cleanup list but marked for "asap" deletion. Every time the above mechanism for cleaning out the temp cleanup list scans for already-deleted temp files, this will try again to delete these temp files. 14 August 2019, 18:22:28 UTC
a6275b6 fix unused variable compiler warning (#32892) 14 August 2019, 18:21:00 UTC
df1ee8c add `TaskFailedException` to propagate backtrace of failed task in `wait` (#32814) 13 August 2019, 18:25:34 UTC
71b63f3 fewer `convert` methods for `Missing` and `Nothing` (#31602) And use `typesubtract` instead of subtyping to improve usability by handling undef sparams. Co-Authored-By: Jameson Nash <vtjnash@gmail.com> 13 August 2019, 18:04:08 UTC
7b4fa51 ccall: support different types for vararg arguments (#32800) Not currently supported in the front-end syntax, this modifies the backend to represent it and be capable of handling it (and need fewer lines of code!). 13 August 2019, 18:01:12 UTC
4537d78 Improve message error in broadcast: "arrays could not be broadcast to a common size" #32866 (#32867) 13 August 2019, 15:34:44 UTC
d19bb9d Specialized inv(F::SVD) (#32126) * inv(F::SVD) * throw SingularException * SingularException test * truncate 13 August 2019, 08:33:46 UTC
6527de0 Use .category to pick admonition color in terminal (#32865) As per the manual, the styling of the admonition should be determined by its type/category, a lowecase string stored in the .category field. 12 August 2019, 22:31:15 UTC
09fa250 Fix linkage to eval section (#32864) 12 August 2019, 22:30:26 UTC
79ea337 𝟎-𝟗 and 𝟘-𝟡 Identifiers (#32838) 12 August 2019, 18:42:25 UTC
a18ab97 Remove JULIA_ENABLE_THREADS feature flag (#32685) This flag was essentially not documented, not CI'ed, and broken (it hangs in `jl_task_get_next at /home/mbauman/julia/src/partr.c:475`). Let's strip it out! 11 August 2019, 16:57:28 UTC
419f541 `Base.indices1` has been renamed to `Base.axes1` (#32856) 11 August 2019, 16:45:38 UTC
2e971e8 fix #32193, consistent errors from `open` on commands (#32832) 11 August 2019, 16:44:00 UTC
987a3d6 use specsig for all-singleton-type signatures (or 0 arguments) (#32821) 11 August 2019, 16:42:25 UTC
0852465 Simplify Channel constructors, change kwargs to positional args. (#32818) "Soft" deprecation of the old `Channel(f::Function; csize=0, ctype=Any)` style in favor of the new `Channel{T=Any}(f::Function, size=0)` interface. Removed the old interface from the docs, so that it is not discoverable, and included a `!!! compat` note that the new interface is new in Julia 1.3, and the old interface should not be used. 11 August 2019, 16:40:20 UTC
37a055c Use .category to pick admonition color in terminal As per the manual, the styling of the admonition should be determined by its type/category, a lowecase string stored in the .category field. 11 August 2019, 04:18:46 UTC
d5db35b NEWS: move sincosd entry to the correct section (#32857) 10 August 2019, 20:08:07 UTC
back to top