swh:1:snp:a72e953ecd624a7df6e6196bbdd05851996c5e40

sort by:
Revision Author Date Message Commit Date
47edc1c tighten Set eltypes used internally in union/setdiff; update docstring for intersect 15 October 2015, 02:20:05 UTC
8adbf7a NEWS for #13542 13 October 2015, 20:10:37 UTC
54f898c NEWS for #13387 13 October 2015, 20:08:18 UTC
2b8773f Merge pull request #13555 from JuliaLang/jn/pure implement a pure function annotation 13 October 2015, 17:27:44 UTC
83eac1e Merge pull request #13387 from wildart/no-dev-pkg move development related functions to `PkgDev` package 13 October 2015, 16:00:01 UTC
7d536e4 Merge pull request #13539 from JuliaLang/jmm/complex_trig_stable Make complex sin and cos type stable 13 October 2015, 15:58:26 UTC
699816a Merge pull request #13580 from JuliaLang/yyc/intrinsic-type Add test for not showing ::Any for intrinsics 13 October 2015, 15:57:21 UTC
b6c0d95 Merge pull request #13542 from JuliaLang/jmm/case_sensitive_loading Make require case-sensitive on all platforms 13 October 2015, 14:52:28 UTC
4e1a056 Clean up code_warntype tests, add test for not showing ::Any for intrinsics (#13571) 13 October 2015, 12:33:12 UTC
1f2cad5 Merge pull request #13572 from JuliaLang/sjk/res Fix a scoping bug in Pkg.Read 13 October 2015, 12:07:26 UTC
d9226c7 Merge pull request #13571 from JuliaLang/yyc/intrinsic-type Do not show the type of intrisics when it's `Any` 13 October 2015, 12:06:26 UTC
582af41 Merge pull request #13566 from mbeltagy/patch-1 hvcat doc example fixed 13 October 2015, 12:05:24 UTC
2d014c5 Merge pull request #13538 from JuliaLang/jmm/channel_array_api Define push! and shift! for channels 13 October 2015, 12:04:18 UTC
d00667e Merge pull request #13537 from JuliaLang/anj/importall Delete importall Base in linalg, sparse and datafmt 13 October 2015, 12:03:21 UTC
b70c07c Merge pull request #13535 from MichaelHatherly/mh/fix-atrepl-regression Fix regression in `atrepl` 13 October 2015, 12:02:24 UTC
51b3dd5 client.jl: refactor colors code to reduce duplication somewhat 13 October 2015, 11:42:45 UTC
ef46074 Merge pull request #12754 from twadleigh/customize_info/warn_colors Make info & warn colors configurable via ENV 13 October 2015, 10:56:30 UTC
7e10ef9 Test version handling for untagged detached package heads 13 October 2015, 04:51:30 UTC
b78f560 Make require case-sensitive on all platforms 13 October 2015, 04:06:36 UTC
44280b3 Fix a scoping bug in Pkg.Read Should make JuliaStats/StatsBase.jl#139 pass tests on Travis 13 October 2015, 03:12:43 UTC
bdd23ea Do not show the type of intrisics when it's `Any` Close #13568 13 October 2015, 01:44:30 UTC
d06e348 fixing whitespaces and generating arrary.rst doc 13 October 2015, 00:39:34 UTC
0e498d3 Added doctest for hvcat Removed test for a non-working example and added clearer doctest example instead. 12 October 2015, 21:01:03 UTC
12cc0d3 Make info & warn colors configurable via ENV 12 October 2015, 17:57:12 UTC
0792585 Make complex sin and cos type stable 12 October 2015, 17:48:02 UTC
3d132a9 hvcat doc example fixed hvcat doc example was not working I changed it to one that does. 12 October 2015, 17:32:34 UTC
6aa15b8 Merge pull request #13516 from JuliaLang/ihnorton-patch-1 Some updates to CONTRIBUTING 12 October 2015, 05:22:53 UTC
b7278d1 add support for calling `@pure` functions with args that are potentially not effect free (some of the linalg code expects this) 12 October 2015, 03:03:53 UTC
59821c9 Remove importall from datafmt.jl 12 October 2015, 00:21:26 UTC
c6423bf Remove importall from sparse.jl 12 October 2015, 00:21:20 UTC
aa68ea7 Merge pull request #13536 from matthieugomez/vecdot Make vecdot faster for AbstractArrays with eachindex 11 October 2015, 16:44:44 UTC
a1e9bbb vecdot 11 October 2015, 15:33:28 UTC
af71b86 Do not pass RTLD_DEEPIND to dlopen in asan mode Passing RTLD_DEEPIND causes asan's interception of libc symbols to fail, causing all kinds of sadness (particularly mismatched allocators). 11 October 2015, 07:51:19 UTC
3826710 Fix potential heap overflow in debuginfo.cpp Thanks AddressSanitizer! 11 October 2015, 05:53:25 UTC
0ac8d80 Some updates to CONTRIBUTING Adds "learning Julia" and "before filing an issue" sections to provide brief guidance for the most common situations. Also some cosmetic and ordering changes. 11 October 2015, 01:00:07 UTC
ec8ed0c Define push! and shift! for channels 11 October 2015, 00:51:31 UTC
4f9631a Merge pull request #13525 from JuliaLang/kf/applytypeinference Improve apply_type inference for complicated types 10 October 2015, 23:49:07 UTC
6a1477f Remove importall from LinAlg 10 October 2015, 23:31:15 UTC
78a4d25 Minor doc change to getsockname 10 October 2015, 22:38:42 UTC
c16d174 Merge pull request #11012 from wildart/getsockname added `getsockname` for determining a socket name (address & port) of the running server 10 October 2015, 22:27:07 UTC
b7697e7 Add `Libdl.dlext` to documentation fixes #12865 10 October 2015, 21:45:20 UTC
acfe470 Fix error message interpolation in dates/types.jl 10 October 2015, 21:24:38 UTC
446ddaa Fix regression in `atrepl` Docs attached to numbers weren't being found. Finding docs for specific methods using the syntax help?> f(::Int) wasn't being recognised due to changes in how `gen_call_with_extracted_types` generated an error when it failed. (Previously the error was thrown by the function, but is now returned as an `:(error("..."))` expression.) 10 October 2015, 20:25:13 UTC
72fac6e Merge pull request #13505 from JuliaLang/anj/cov A few fixes of the deprecations of the keyword versions of cov and cor. 10 October 2015, 17:45:58 UTC
ae154d0 Fix make binary-dist on Windows for out of tree build 10 October 2015, 10:50:25 UTC
09c9a19 Fix gitconfig modification with bundled git 10 October 2015, 10:10:10 UTC
caab310 Use delayed expansion in CXXLD to fix #13337 generation of libjulia.dll.a on Windows 10 October 2015, 10:04:20 UTC
4fed9e5 Improve apply_type inference for complicated types The motivating example here is: ``` julia> T = Cxx.CppValue{Cxx.CxxQualType{Cxx.CppTemplate{Cxx.CppBaseType{:A},Tuple{Cxx.CxxQualType{Cxx.CppBaseType{:B},(false,false,false)}}},(false,false,false)}} Cxx.CppValue{Cxx.CxxQualType{Cxx.CppTemplate{Cxx.CppBaseType{:A},Tuple{Cxx.CxxQualType{Cxx.CppBaseType{:B},(false,false,false)}}},(false,false,false)},N} julia> @eval baz() = ($T){4} ``` Without this patch it infers it as Type{<:Cxx.CppValue{Cxx.CxxQualType{Cxx.CppTemplate{Cxx.CppBaseType{:A},Tuple{Cxx.CxxQualType{Cxx.CppBaseType{:B},(false,false,false)}}},(false,false,false)},N}}, which seems pretty sad given how simple the expression is. 10 October 2015, 07:53:31 UTC
ba135b2 Merge pull request #13518 from JuliaLang/cjh/micro-libblasname micro: change LIBBLAS to use LIBBLASNAME 10 October 2015, 07:52:35 UTC
8ce7a02 mark some more key functions are @pure 10 October 2015, 06:27:05 UTC
c416e9f add @pure annotation to promotion functions 10 October 2015, 06:27:05 UTC
0cd98aa detect @pure in src, without requiring inference to have been run on a function 10 October 2015, 06:27:05 UTC
1fd50a0 implement @pure annotation (recorded in the linfo) and support in inference such that pure functions might be run at that time 10 October 2015, 06:27:05 UTC
42e9e9d micro: change LIBBLAS to use LIBBLASNAME Also get rid of -L$(BLASDIR), which is not necessary when statically linking Ref: 7dcc01be36a854bf95915f1cdf157df7c722ea68 09 October 2015, 22:16:16 UTC
7dcc01b Update name of OpenBLAS library in microbenchmark Ref: #13407 Cross-reference release-0.4 f8ab4bdffa5daee40f3ae5653f95e86d5cda35b3 09 October 2015, 21:38:35 UTC
6f3ccdd Merge pull request #13506 from stevengj/buildspawn1 eval build.jl files in a separate Julia process for Pkg.build 09 October 2015, 20:47:49 UTC
c842e86 Merge pull request #13509 from JuliaLang/tk/wingit Fix Windows Git path issues 09 October 2015, 15:54:32 UTC
652184d Merge pull request #13470 from ssfrr/custom-testset Adds custom testset type API 09 October 2015, 15:50:56 UTC
c18d271 Fix Windows Git path issues from upgrade to Git 2.x, causing failure of spawn test on appveyor also remove busybox since Git 2.x makes it unnecessary 09 October 2015, 13:12:22 UTC
b9ed89e Merge pull request #13480 from JuliaLang/anj/qr Add generic pivoted QR and a bit of restructuring of the qrfacts 09 October 2015, 13:05:43 UTC
de30806 Merge pull request #13494 from felipenoris/fn/wgit [master] bump version of embedded git for windows 09 October 2015, 10:58:15 UTC
22e86cb eval build.jl files in a separate Julia process for Pkg.build (fixes #13458) 09 October 2015, 04:02:12 UTC
978c588 A few fixes of the deprecations of the keyword versions of cov and cor. Also make sure that all methods are tested. 09 October 2015, 01:14:21 UTC
e0fb404 [master] bump version of embedded git for windows 08 October 2015, 18:39:37 UTC
7a10771 Add generic pivoted QR and a bit of restructuring of the qrfacts 08 October 2015, 18:18:19 UTC
38299b7 Merge pull request #13465 from JuliaLang/anj/cov Make cov and cor similar to mean and var by removing keyword arguments. 08 October 2015, 18:12:19 UTC
2acdb83 fixes at-testloop documentation in stdlib docs 08 October 2015, 17:48:35 UTC
90bce78 Merge pull request #13498 from stevengj/coloredprecompile use color in precompilation output if parent process is using color 08 October 2015, 17:34:08 UTC
646ea37 Merge pull request #13491 from JuliaLang/jn/lineno_fixes fix tail line numbers in backtraces 08 October 2015, 15:35:28 UTC
c661ef6 Make cov and cor similar to mean and var by removing keyword arguments. This fixes #13081 and the type instability that motivated that issue. 08 October 2015, 15:32:23 UTC
e917b71 use color in precompilation output if parent process is using color 08 October 2015, 15:25:46 UTC
d3af973 Merge pull request #13492 from felipenoris/fn/win-review minor review of README.windows.md 08 October 2015, 06:15:17 UTC
0d923f9 Merge pull request #13489 from KristofferC/kc/amulbdoc improve docs for A_mul_B! 08 October 2015, 05:53:46 UTC
6a2ef6d Merge pull request #13490 from JuliaLang/ksh/trifix Fix bugs & add tests for triangular matrices 08 October 2015, 05:33:02 UTC
ecb25bc minor review of README.windows.md 08 October 2015, 04:53:40 UTC
18c9029 Fix bugs & add tests for triangular matrices 08 October 2015, 04:28:56 UTC
c07de05 removed github module 08 October 2015, 02:48:39 UTC
fcfac39 fix test helper to keep generated data 08 October 2015, 02:13:54 UTC
698fa61 removed dev related tests 08 October 2015, 02:13:54 UTC
4dd3364 moving development related functions to `PkgDev` package 08 October 2015, 02:12:58 UTC
fb4b161 Merge pull request #13478 from wildart/fix-13375 fix #13375 08 October 2015, 00:05:09 UTC
af81d6c fix #922 (wrong line numbers in error expressions) and remove old hacks around this issue 07 October 2015, 23:29:02 UTC
e2ee728 tweaks docstrings and adds stdlib docs 07 October 2015, 23:13:29 UTC
a33cd07 preserve inline line numbers during inlining 07 October 2015, 23:11:25 UTC
8c11f0c Merge pull request #13483 from JuliaLang/yyc/readdlm-bigint Fix BigInt parser. Add test for readdlm(BigInt) 07 October 2015, 23:01:47 UTC
a70d7cf fix disasm printing to handle inlining info 07 October 2015, 22:28:43 UTC
f17d5af Merge pull request #13461 from JuliaLang/yyc/setindex-return Avoid introducing local variable (and GC frame store) in `unsafe_setindex!` 07 October 2015, 22:13:16 UTC
05fb6ad improve docs for A_mul_B! 07 October 2015, 21:23:47 UTC
d0a50e0 NEWS: Minor reformatting and grammatical fixes 07 October 2015, 19:32:54 UTC
c59e23b Merge pull request #13486 from peter1000/patch-3 Fixes typo [skip ci] 07 October 2015, 19:22:53 UTC
789ce2f Fixes typo [skip ci] 07 October 2015, 19:07:10 UTC
eaf5532 Fix BigInt parser. Add test for readdlm(BigInt) 07 October 2015, 16:01:27 UTC
930e6b5 set a min target architecture of pentium4 to require support for sse2 and _mm_pause 07 October 2015, 15:08:14 UTC
1b41d64 work around a gcc register allocation error see https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67814 07 October 2015, 15:08:14 UTC
2d5d9a3 reduce cruft from codegen init 07 October 2015, 15:08:14 UTC
99e900f fix whitespace script to not get confused by glob expansion, and whitespace errors 07 October 2015, 15:08:14 UTC
770d96d fix minor makefile grievances 07 October 2015, 15:08:14 UTC
85f8a67 precompile_unspecialized was on the wrong branch, resulting in some defs not getting precompiled 07 October 2015, 15:08:14 UTC
91d1eba fix Makefile conflict between USE_SYSTEM_BLAS and openblas-renaming 07 October 2015, 15:08:14 UTC
d14c1c2 fix #13375 07 October 2015, 11:46:06 UTC
back to top