https://github.com/JuliaLang/julia

sort by:
Revision Author Date Message Commit Date
d55cadc Set VERSION to 0.6.3 release (#27283) 28 May 2018, 20:20:40 UTC
261e488 Merge pull request #26915 from JuliaLang/aa/backports-0.6.3 Backports for Julia v0.6.3 27 May 2018, 21:19:03 UTC
2583e04 Fix doctest in base/array.jl 27 May 2018, 04:48:03 UTC
ec77c3d Backport a few doc build updates for 0.6.3 * Bump Documenter and deps. * Canonical URLs and build cleanup. (#25623) * Hide "The Julia Language" in navbar. (#27146) 27 May 2018, 04:48:03 UTC
57f742a wrap range variable in a let block for at_threads (#24688) Working around #15276 Ref #24688 (cherry picked from commit 7704b099ddaee4a0a1824cb703cc729400637344) 27 May 2018, 04:48:03 UTC
3308f1f Manually add test to ensure backport worked 27 May 2018, 04:48:03 UTC
6c065b6 base/array.jl: fix definition of ntuple with a Val argument to not expect inference to be non-terminating this same issue applied to several other similar functions similarly, need to avoid nesting the use of functional code (like map) too deeply inside the array code to avoid the appearance of indeterminate recursion in inference (minimally cherry-picked just for base/array.jl from 4f1b479d755bad5d8e36a0d6a7ce3c70bcbbe484 27 May 2018, 04:48:03 UTC
a286fe1 Avoid out of bounds read in mul! for SymTridiagonal (#27008) * Avoid out of bounds read in mul! for SymTridiagonal Fixes #26994 * Also handle 0x0 case Ref #27008 (cherry picked from commit f90c599741e76014db8f7f2003d29ddc74ea3a05) 27 May 2018, 04:48:03 UTC
72c3e62 add AbstractVecOrMat fallback for vcat (fixes #25770) (#25777) Ref #25777 (cherry picked from commit 3a27e01c7793a12bedd1282bbf77263614ffe905) 27 May 2018, 04:48:03 UTC
7a836d1 fix a transitivity issue in specificity, from #26915 (#27042) Ref #27042 (cherry picked from commit 5fb465fdc2b6bb9d64d4733ad5d1dccce327cb03) 27 May 2018, 04:48:03 UTC
9ef6916 add JL prefix to libLLVM.so symbol version suffixes Ref #25597 (cherry picked from commit 9803708b25fd6f3d01b28bc393a9bce1dfa1c645) 27 May 2018, 04:48:03 UTC
1fea0bb Backport symbol versioning patch from LLVM 4.0 Should help with crashes when loading multiple libLLVM versions in the same process, as happens with mesa/llvmpipe when mesa is dynamically linked against libLLVM. See https://github.com/JuliaLang/julia/issues/19606 patch: https://reviews.llvm.org/D31524 commit: https://reviews.llvm.org/rL300496 Ref #25597 (cherry picked from commit edabf42da38be778a17766aec107dae0c2aeb7ab) 27 May 2018, 04:48:03 UTC
4c243bf fix #26979, incorrect typeassert in deserialize Ref #26986 (cherry picked from commit 901b2403340791b0ab7162951d3f2c53176cfb10) 27 May 2018, 04:48:03 UTC
6e2e0e0 Search the julia subfolder first in RPATH (#26972) Fixes #26830 Ref #26972 (cherry picked from commit dde401e869dc086e710ad8ec4e47d3473e11c243) 27 May 2018, 04:48:03 UTC
4762397 Add customizable build scripts for FreeBSD CI Ref #25705 (cherry picked from commit 3dd40ff7a80180fcf75db88b411c8d097bf28740) 27 May 2018, 04:48:03 UTC
828ea76 interactiveutil: clipboard for FreeBSD (#23151) Ref #23151 (cherry picked from commit f5dab584f3635ca12b86a866402bf23bb66e3112) 27 May 2018, 04:48:03 UTC
ed27c3d sysinfo: fix the unit of maxrss on FreeBSD The value from rusage.ru_maxrss is in kilobytes. Ref #22997 (cherry picked from commit f60636f1a9e87db47c01134571f6eb4bb513db7c) 27 May 2018, 04:48:03 UTC
1b9900b libgit2: fix cmake options on FreeBSD (#22754) Fix #22745 Ref #22754 (cherry picked from commit c492a7d7623a0066a0f4c6a26601ecac39190c60) 27 May 2018, 04:48:03 UTC
e231870 A simpler way to deal with libgcc_s on FreeBSD (#22656) Tweak the order of libgcc_s in DT_NEEDED on FreeBSD so that building on FreeBSD does not require `BUILD_CUSTOM_LIBCXX`. See also: #21788, #22352 Ref #22656 (cherry picked from commit d90c215f0b672dd1cd462d7a86c78d2043afba5e) 27 May 2018, 04:48:03 UTC
51da3b5 Declare LLVM Make variables as simply-expanded, not recursively expanded Ref #22352 (cherry picked from commit 9e37db0d7ddde2ae8ae81b8142771a3694a0dc91) 27 May 2018, 04:48:03 UTC
4530b55 Avoid setting the RPATH for LLVM Ref #22352 (cherry picked from commit 8b8fa11c26f29a451537ff65e2ac18dbad85eacc) 27 May 2018, 04:48:03 UTC
3d27e2d Mark the backtrace test as broken on FreeBSD (#21917) Ref #21917 (cherry picked from commit 623eab49cc985c7068fd129618d5a818871d8e3a) 27 May 2018, 04:48:03 UTC
a833395 Rearrange CMake RPATH specifications to be centrally defined Ref #21788 (cherry picked from commit 78305aad4a57d426ea282d604c71a4865b6f4e6e) 27 May 2018, 04:48:03 UTC
4174f0a Workaround for FreeBSD linking to outdated system libs FreeBSD's system libgcc_s declares its GCC version as 4.6, which is too old to build Julia. Since gfortran doesn't come installed by default, when it's installed it's done so through a GCC port, which includes its own libgcc_s. Linking to libgfortran from the port and to the system's libgcc_s causes versioning issues which wreck the build. This commit works around this issue by determining the version of GCC used for gfortran, then linking in the libgcc_s corresponding to that version everywhere. It's a bit of a kludge, but it gets the job done. With this change, all libraries which need to link to libgcc_s link to the proper version. Ref #21788 (cherry picked from commit 7d83d9908f25ffe4f8a9ae0499bc17dfb7b6b005) 27 May 2018, 04:48:03 UTC
177677d Allow building patchelf on FreeBSD Ref #21689 (cherry picked from commit 6774ec6535d9fdc6a3ee560e6a58beb6c29c7c14) 27 May 2018, 04:48:03 UTC
c6a77bf Set RPATH for private libdirs on FreeBSD Ref #21689 (cherry picked from commit 0ab5cc0e46a169b43918fdee710f2c91e2368afc) 27 May 2018, 04:48:03 UTC
8fc030b bump utf8proc to 2.1.1 (#26917) * bump utf8proc to 2.1.1 This contains a bug fix for a normalization error (JuliaLang/utf8proc#128). * added test for JuliaLang/utf8proc#128 * update checksums Ref #26917 (cherry picked from commit 64040cedc71ae4750c4e5ac8f0900927ad759788) 27 May 2018, 04:48:03 UTC
199a204 Remove indirect dependency on system ZLIB (#26888) * Remove indirect dependency on system ZLIB - build LLVM without ZLIB support - use the bundled ZLIB for libgit * backport bundled zlib patch Ref #26888 (cherry picked from commit 8770821e88b7033c631cbd8cf0598f6d121e143b) 27 May 2018, 04:48:03 UTC
4bfabb6 Travis: download moreutils from the release tarball (#26902) * Update moreutils git repo location in .travis.yml The old `kitenet.net` domain is down. Checking on wayback, its pages had been throwing 302 redirects to this new domain. * Try downloading tarball from http.debian.net (cherry picked from commit 509d6a1a8871dcec78cd6603b6d64871d1088b2f) 08 May 2018, 20:10:51 UTC
fe59a2b IdDict: support deletion, and support `nothing` used as a key previously, if we deleted one key or added `nothing` as a key, we might lose some of the other entries too (until rehash) fix #26833 (cherry-pick PR #26839, 5e57c214f872083ccacafa0f753e794ec654a21a) (cherry picked from commit 6d60f78c8f5939353a45f482c43f3d77c1e7a01c) 08 May 2018, 20:10:51 UTC
8fc364e Upgrade openblas to 0.2.20 (#22975) remove patches that are included in this version Ref #22975 (cherry picked from commit 154e50356eb74ee8140fa7a6f6c81caa86da5a52) 08 May 2018, 20:10:51 UTC
076ae8f bugfix for regex matches ending with non-ASCII (#26831) Ref #26831 (cherry picked from commit aed8a848165285d2f4c29330d20d3067c3b958e3) 08 May 2018, 20:10:51 UTC
04f788b Fix bunch kaufman type stability (#26375) * Fix type instability in return type of sytrf functions * Add test for 0x0 case Ref #26375 (cherry picked from commit 4181aad66d696e04987c6080c5a2bb08637b466c) 08 May 2018, 20:10:51 UTC
7f2876f Fix leak of Futures when unfetched Futures are repeatedly serialized (#26143) to the node with the reference store. Ref #26143 (cherry picked from commit 88a6b400907d20cf64689c5b8bf411f267d32704) 08 May 2018, 20:10:50 UTC
c66a23f fix typo in markdown rendering of SVG images (#25987) Ref #25987 (cherry picked from commit e59dabe6f66052b2a727fc0f73038766c32a36d3) 08 May 2018, 20:10:50 UTC
01a1dda fix a case of non-transitivity in method specificity (#25832) Ref #25835 (cherry picked from commit 4fe91bdadfcd025ed27ddb220da01c557495ed79) 08 May 2018, 20:10:50 UTC
1e59581 Use -ffc2 when compiling Fortran libraries with gfortran and MKL (#25298) Fixes #17946 Ref #25298 (cherry picked from commit dad96fb5233638adc567dd7f776c6a8952f2038d) 26 April 2018, 22:21:14 UTC
f50b1ce Some debug code for Pkg solver Ref #24904 (cherry picked from commit 208f633d4b5d820b202291541ab73ba1cd3f89f9) 26 April 2018, 22:21:14 UTC
bafff12 Ensure consistency in Pkg solver decimation process Fixes the rare condition where two packages were being decimated at once in mutually inconsistent versions. Ref #24904 (cherry picked from commit 450c8c4edaa1e996aab46f9c954f10de75b4399b) 26 April 2018, 22:21:14 UTC
f96b7ab Improve Pkg.Query.sanity_check Set the packages as fixed when checking instead of just requiring them; propagate the resolution info; improve the dependency computation efficiency; some refactoring. Ref #24904 (cherry picked from commit 114e82e22c686a75b78615f9c707a6f49d4516cd) 26 April 2018, 22:21:14 UTC
539423e Improve Pkg dependency pruning Computes the dependency graph subset induced by the requirements after filter_versions has propagated the implicit requirements, rather than before, which ensures that only the parts reachable from some requirement are kept. In practice, it removes many more useless parts of the graph. (Plus other tiny improvements.) Ref #24904 (cherry picked from commit 9b000594732df19ad02d034d8fe5749cb74992b7) 26 April 2018, 22:21:14 UTC
fe2410a make setindex!(v::RowVector, ...) return v rather than v's parent (#24902) * Make setindex!(v::RowVector, ...) return v rather than v's parent. Ref #24902 (cherry picked from commit e28b5075c133cf317db4a7e185397ff3363661d9) 26 April 2018, 22:21:13 UTC
860627f FileWatching: fix use-after-free (#24767) Ref #24767 (cherry picked from commit 46f88a2c3d0f2794e52d27eaaeeac10195969db3) 26 April 2018, 19:24:42 UTC
a321e6b ios: Use _chsize_s on Windows for file truncation (#24616) Should allow files >2 GB to be truncated on Windows. Fix #24466 Checking Windows 32bit build https://julialang-s3.julialang.org/bin/winnt/x86/0.6/julia-0.6.1-win32.exe, libgit2.dll already uses `_chsize_s`, so both 32bit and 64bit should be able to use `_chsize_s`. Ref #24616 (cherry picked from commit ff045afdfd448a28b43b764c4d67e6ef3ed42ed0) 26 April 2018, 19:22:18 UTC
41143e8 change PCRE download link (#26848) (cherry picked from commit ba8342a6d12d86cb94819f3b7e65ead2d983b046, PR #26757) 18 April 2018, 22:58:36 UTC
93168a6 Set version to 0.6.3-pre (#25149) 18 December 2017, 07:11:39 UTC
d386e40 Tag version v0.6.2 (#24993) 13 December 2017, 18:08:26 UTC
217e059 Avoid overquoting in Travis setup (#25049) This leads to failure in configure. 13 December 2017, 05:28:51 UTC
d953095 [release-0.6] set buildopts on 32bit similar to the buildbots (#24976) 08 December 2017, 20:26:29 UTC
21dc646 Merge pull request #24975 from JuliaLang/aa/backport-curl [release-0.6] Backport "Explicitly add `-lpthread` when building curl" 08 December 2017, 03:36:44 UTC
aaed34c Explicitly add `-lpthread` when building curl This is necessary on older Linuces (such as Ubuntu 12.04 x86) that have older OpenSSL library versions. Curl switched over to a threaded DNS resolver by default in version 7.55, and this requires `libpthread`. However, their build system relies on the fact that OpenSSL (usually) provides the proper linkage flags, and so breaks on older Linuces. See [0] for more details. [0] https://curl.haxx.se/mail/lib-2017-09/0112.html (cherry picked from commit c323437bbad47d349856da358cd5e08f512da5d0, PR #24261) 07 December 2017, 22:37:20 UTC
32cf0f1 Merge pull request #24953 from JuliaLang/vc/r06 check if travis cache picked up LLVM patches from master 07 December 2017, 02:14:27 UTC
3b21169 release-0.6, check if travis cache picked up LLVM patches from master 07 December 2017, 02:07:00 UTC
4ab8c67 [release-0.6] Set JULIA_CPU_TARGET on Travis (#24934) * Set JULIA_CPU_TARGET on release-0.6 Travis [av skip] [bsd skip] 06 December 2017, 03:15:29 UTC
70b0055 NEWS and license header updates for release-0.6 (#24858) 30 November 2017, 05:15:38 UTC
3835d80 Point links in Dates docs to release-0.6 on 0.6 (#24851) Currently there are links in the Dates section of the manual that point to files on master. Besides being not generally great, this didn't really pose a problem until Dates moved to the stdlib on master, which made these links 404s, thereby causing the docs build to fail on release-0.6. The links were adjusted on master in #24821. 30 November 2017, 02:21:44 UTC
0e505c2 Merge pull request #24519 from JuliaLang/aa/backports-0.6.2 Backports for 0.6.2 29 November 2017, 19:38:53 UTC
6736f45 Listen on the first free port from 9009 Partially reverts the backport of #21818 in 0.6.1. Fixes #24722. Revert client_socket_reuse 27 November 2017, 17:49:20 UTC
3522df1 revert part of cf2ed662 to fix JuliaDB test failure Ref #24678 (cherry picked from commit 2f19f3f4613787fc2b707e3507abc52745548c84) 22 November 2017, 04:25:24 UTC
efba001 runtime-intrinsics: fix definition of shifts The compiled version does zext, whereas this was doing sext. (cherry picked from commit bceb764ba3c884bf791ef9a8e2c3144af496a069) 22 November 2017, 04:25:24 UTC
7d0840c another fix to run-time `ashr_int` (#24575) (cherry picked from commit a282b5fc577fad0d33358cd9b7d8dd0793f3164d) 22 November 2017, 04:25:23 UTC
0f12eac Allow broadcating with custom types that loose to Tuple 22 November 2017, 04:25:23 UTC
c59edf9 Add patch to build compiler-rt on recent glibc. Ref #24601 (cherry picked from commit fca7881c33066ded863fbc431660c357c1a32657) 21 November 2017, 03:01:52 UTC
7809470 Remove unused compiler-rt patch. Ref #24601 (cherry picked from commit 16ce645609fe1cd5936f773294f54a23221eac55) 21 November 2017, 03:01:52 UTC
c10fea8 Pass codegen params to setup_module from emit_function. Ref #24604 (cherry picked from commit 7c46e3d6e4e74e4e8961e89b2d4478ca9a810058) 21 November 2017, 03:01:52 UTC
d2ee1a7 Show Dates.format docstring with code table (#24607) (cherry picked from commit 973e0599dc182ea578b97cd4d97dc9893e18710c) 21 November 2017, 03:01:51 UTC
0ba49ca Skip memmove in del_at_beg when not needed. (#24503) This was likely previously done on linux in the glibc implementation. Fix #24494 (cherry picked from commit d7a171eb2e650192f07e93466d0ccd4747061a0d) 21 November 2017, 03:01:51 UTC
06623d7 clarifications on display vs show (#24513) From the [mailing list](https://discourse.julialang.org/t/output-like-print/6930/7?u=stevengj) (cherry picked from commit 307773217a79d267910aba9af9a12310d9f704d8) 21 November 2017, 03:01:51 UTC
d6fd53c Upgrade curl to 7.56 (#24112) Fix #23980 (cherry picked from commit a12d6f31805dc4ca7c79d293872943cb42f8440e) 21 November 2017, 03:01:51 UTC
d6acac2 Update libuv commit (#24190) This includes a fix from upstream libuv that ensures that the thread stack size is set to a multiple of the page size. Fixes #18818 Fixes #24169 (cherry picked from commit 6a23e234e6cc5b4361b5f88614a9ed423dc2c12a) 21 November 2017, 03:01:51 UTC
ed6b7f9 print output from info and warnings in one shot, to prevent interleaving when used async (#24530) (cherry picked from commit 1cd62b3b48d494b67eb7a15b031bc2b3379ca97c) 21 November 2017, 03:01:51 UTC
c4d4898 fix regression in lowering `[x... y]` caused by #24538 (#24552) recursive calls to `expand-forms` should generally be tail calls, matching the usual top-down macro expansion order. (cherry picked from commit 27665e83a757dafdcb838541a40870e3760be2f3) 21 November 2017, 03:01:50 UTC
b109dfe runtime intrinsics: correct several (#24537) flipsign was using the wrong argument several others could trigger an LLVM assertion on divide-by-zero (cherry picked from commit ebd8831cc9bb1ad7c83693e7ff6a5358d9f2bd77) 21 November 2017, 03:01:50 UTC
03638e3 fix run-time implementation of ashr_int intrinsic (#24517) (cherry picked from commit 5383a3084d32421f758c8af3782bb8d8fdda2419) 21 November 2017, 03:01:50 UTC
298421f Fix JavaScript randmatstat matrix calculations (#24385) (cherry picked from commit 268f878b33bbcf69b5c60d2409f973f0278d07f5) 21 November 2017, 03:01:50 UTC
d468301 CI: switch travis to sudo-required (#22986) (cherry picked from commit 0189574cd36e8db7be0e0fe3a6f0956f440562b8) 21 November 2017, 03:01:50 UTC
30b3625 Fix IndexLinear views with a 1-dimensional parent having offset indices Fixes https://github.com/JuliaArrays/OffsetArrays.jl/issues/27 Ref #23686 (cherry picked from commit afd56a6cec47fbb52777cecaf897fd80739631fb) 21 November 2017, 03:01:49 UTC
b13ae0f Add instruction to release-candidate target about testing builds without Internet It is generally a good idea to test that final tarballs build and pass the tests. Disabling Internet access allows ensuring that builds are reproducible, and is necessary for some build servers. Ref #24496 (cherry picked from commit 8cb370152f57b0c2578dffdde48da3925e08551a) 21 November 2017, 03:01:49 UTC
d05e152 Exclude version_git.jl from list of dependencies for HTML docs This file is modified by the light-source-dist target when preparing tarballs. Depending on it means that the docs will be rebuilt when calling 'make install' from the tarballs. This requires downloading files, which is problematic for replicable builds and may not be possible on build servers. Ref #24496 (cherry picked from commit bd019a4037f59c0ab1db8a08c0d4a4aa23f52ad5) 21 November 2017, 03:01:49 UTC
5cd144f size -> indices to fix show of OffsetArrays (#24393) (cherry picked from commit 12517bd8ca20f574b65426ada6a28e69963b2bce) 21 November 2017, 03:01:49 UTC
a10d6f7 fix #24305, stack overflow when intersecting sequence of big unions (#24314) (cherry picked from commit a547d7331555b26c933d35d07c81f2ec1a7bb635) 21 November 2017, 03:01:49 UTC
c26b271 Print some useful info when hitting some cases of invalid UTF-8 (#24311) (cherry picked from commit 29fcb3714ccba4df16bcce043b6e1e125e738776) 21 November 2017, 03:01:48 UTC
ee35538 Simple documentation update: Remove obsolete comment about vector transpose (#24267) * Remove obsolete comment about vector transpose This is not true anymore since the introduction of `RowVector`: julia> typeof([1,2]') RowVector{Int64,Array{Int64,1}} julia> [1,2]' * [3,4] 11 (cherry picked from commit bb703387aa59452983cc09aa1744139f835d895b) 21 November 2017, 03:01:48 UTC
f2841b5 bugfix in collect(A) for zero-dimensional array Ref #24187 (cherry picked from commit c59b8b184e10805a23ebc1e0702e0199147afbb1) 21 November 2017, 03:01:48 UTC
5a3cbdc Don't use copy_oftype in \(QRX, B) to make sure that solution array is mutable (#24110) * Don't use copy_oftype in \(QRX, B) to make sure that solution array is mutable. Fixes #24107 * Always return B in A_ldiv_B!(QRPivoted, B) (cherry picked from commit f9c662dbbb2aa2469aa85786146a445705d0c776) 21 November 2017, 03:01:48 UTC
2500378 fixes enum capitalization (#24105) * fixes enum capitalization This brings the example in the `instances` docstring in line with the naming convention used elsewhere in the enum docs. See #19506 * more enum consistency (cherry picked from commit 05045841189269dbf5aead770c1152207ea279fd) 21 November 2017, 03:01:48 UTC
0b2c53b Do not save and restore signal mask when initializing tasks (#24090) This is consistent with what we do with `ASM_COPY_STACK` and it causes new tasks to be initialized to the wrong signal masks now that we initialize tasks before signal handlers. This cause ARM core test to fail after #24066 since the task running the test have SIGINT masked off. (cherry picked from commit 56040a706c76851770c96b5a216d925ca3d28ae9) 21 November 2017, 03:01:48 UTC
cbfa82e Fix the randmatstat python microbenchmark (#24089) Fix #23741 (cherry picked from commit 8afbe45b5b1f3e8bd2010f2fa85c5854e9c4fa0a) 21 November 2017, 03:01:47 UTC
10392dc init task system first (#24066) This has no dependencies on the rest of julia_init, but later functionality (like __init__) may want to be able to use Tasks (cherry picked from commit 3fa9b9c81f321dee95f0a9a150bcb086cf6dba56) 21 November 2017, 03:01:47 UTC
83234e8 Fix cgmemmgr for high address allocations This can certainly happen on 32bit with enough allocation. It's not entirely clear if it can happen on any 64bit linux but a solution seems possible so it's also included. Ref #24033 (cherry picked from commit 9c3cafb8ffdbac6e96c1d28e0bda65b8d0625f93) 21 November 2017, 03:01:47 UTC
c7a63d9 fix #24002, lowering error in comprehensions at top level (#24005) the temp variables were not declared local (cherry picked from commit 7504a381631328bd8e6411a179e12977b0d0a41c) 21 November 2017, 03:01:47 UTC
d8ae4be fix #23996, bug in local function capturing in lambda-optimize-vars (#24004) (cherry picked from commit c61aa276a3e89f4cb0ccbe797ed48f49c4e5ae20) 21 November 2017, 03:01:47 UTC
fab29e9 Fix return value in asyncmap! (#23906) (cherry picked from commit 4d2e1d7cdf4cbce4650cbe6b6c5ebde5b86cca10) 21 November 2017, 03:01:47 UTC
4ba27b9 Fix length calculation of broadcast over tuples (#23887) (cherry picked from commit 698ef27a22a1ccb464cfbbc496fb5e6fa5b7c369) 21 November 2017, 03:01:46 UTC
2f409e6 fix #22842, dispatch confusion with `Type{T}` vs. `typeof(T)` (#23831) (cherry picked from commit f4619d01ec65790942a92cb6ef10643ddc57c709) 21 November 2017, 03:01:46 UTC
b1f399c Explicitly import warn_once, shell_escape, uv_error into Distributed Ref #23791 (cherry picked from commit e5acd8ddd968cba27b939e5326bfc7bc0f27b7c7) 21 November 2017, 03:01:46 UTC
614547f Fix getindex on LQPackedQ. (#23782) (cherry picked from commit 25622635747c57edc8493312b393d7ce271f6cb6) 21 November 2017, 03:01:45 UTC
67ea744 iostream: Fix \r\n handling in reading buffers (#22621) (cherry picked from commit 1c0573e61953577945474962e9a48f787f21df28) 14 November 2017, 20:03:13 UTC
0379efa Add tests of jl_dump_compiles functionality. One for regular functions and one to make sure that toplevel thunks aren't printed. Ref #22538 (cherry picked from commit dd5f4231de26bc604406b24cb4bc4466ad4059ab) 14 November 2017, 20:03:13 UTC
b63c98c Preclude toplevel thunks from being printed when dump_compiles_stream is non NULL to prevent non-escaping double-quotes and also because it probably doesn't help the users of the dump_compiles_stream feature. Ref #22538 (cherry picked from commit 5b9b8ce5b80a8ff7d6d63a3716ea6856160341ff) 14 November 2017, 20:03:13 UTC
back to top