~ubuntu-branches/ubuntu/wily/julia/wily

« back to all changes in this revision

Viewing changes to base/sysimg.jl

  • Committer: Package Import Robot
  • Author(s): Sébastien Villemot
  • Date: 2013-11-17 19:32:52 UTC
  • mfrom: (1.1.12)
  • Revision ID: package-import@ubuntu.com-20131117193252-tkrpclguqqebqa35
Tags: 0.2.0+dfsg-3
testsuite-i386.patch: loosen the numerical precision for yet another test.

Show diffs side-by-side

added added

removed removed

Lines of Context:
58
58
import Core.Undef  # used internally by compiler
59
59
include("inference.jl")
60
60
 
61
 
# For OS sprcific stuff in I/O
 
61
# For OS specific stuff in I/O
62
62
include("osutils.jl")
63
63
 
64
64
const DL_LOAD_PATH = ByteString[]
171
171
# sparse matrices and linear algebra
172
172
include("sparse.jl")
173
173
importall .SparseMatrix
174
 
include("matrixmarket.jl")
175
174
include("linalg.jl")
176
175
importall .LinAlg
177
176
include("broadcast.jl")
352
351
precompile(print, (TTY,Char))
353
352
precompile(==, (Bool,Bool))
354
353
precompile(try_include, (ASCIIString,))
355
 
precompile(is_file_readable, (ASCIIString,))
 
354
precompile(isfile, (ASCIIString,))
356
355
precompile(include_from_node1, (ASCIIString,))
357
356
precompile(source_path, (Nothing,))
358
357
precompile(task_local_storage, ())
359
358
precompile(atexit, (Function,))
360
359
precompile(print, (TTY, ASCIIString))
361
360
precompile(close, (TTY,))
362
 
precompile(readBuffer, (TTY,Int))
 
361
precompile(read_buffer, (TTY,Int))
363
362
precompile(put, (RemoteRef, Any))
364
363
precompile(getpid, ())
365
364
precompile(print, (IOStream, Int32))