view .hgignore @ 327:15c20ab4b80a

Do not automatically convert Python integer types to Octave (see issue #56) * python_to_octave.cc (pytave::pyobj_to_octvalue): Drop automatic conversion of Python int and long types to Octave. * @pyobject/pyobject.m (pyobject.length, pyobject.size): Cast values to double. Adapt %!tests to changes. * @pyobject/cell.m, @pyobject/dummy.m, @pyobject/subsasgn.m, @pyobject/subsref.m, pycall.cc, pyeval.cc: Adapt usage examples and %!tests to changes.
author Mike Miller <mtmiller@octave.org>
date Sat, 13 Aug 2016 21:24:29 -0700
parents c8da556b6793
children eec3ed1c0578
line wrap: on
line source

syntax: regexp
# The recurrent (^|/) idiom in the regexps below should be understood
# to mean "at any directory" while the ^ idiom means "from the
# project's top-level directory".

(^|/).*\.pyc$
(^|/).*\.dvi$
(^|/).*\.pdf$
(^|/).*\.o$
(^|/).*\.oct$
(^|/).*\.octlink$
(^|/)octave-core$
(^|/).*\.tar\.gz$
(^|/).*\.html

# some common files that the geometry package deals with
# and are rarely meant to be actually committed
(^|/).*\.png
(^|/).*\.svg
(^|/).*\.eps
(^|/).*\.fig

(^|/)m4
(^|/)aclocal\.m4$
(^|/).*\.in$
(^|/).*\.guess$
(^|/).*\.sub$
(^|/)Makefile
(^|/)depcomp
(^|/)missing
(^|/)install-sh
(^|/)libtool
(^|/)ltmain.sh
(^|/)stamp-h1


(^|/)config\.h$
(^|/)config\.log$
(^|/)config\.status$
(^|/)configure$
(^|/)autom4te\.cache($|/)

(^|/)\.deps
(^|/)\.libs

(^|/)octave-workspace

# e.g. doc/faq/OctaveFAQ.info
#      doc/interpreter/octave.info-4
^doc/.*\.info(-\d)?$

^doc/\w*/stamp-vti$
^doc/\w*/stamp-vti$

^doc/latex
^doc/html
^doc/.*\.db$

# Emacs tools create these
(^|/)TAGS$
(^|/)semantic.cache$

# Other text editors often create these
(^|/).*~$