annotate .hgignore @ 374:d362cdd1ddeb

pyobject: add conversion methods for single, intX, and uintX types * oct-py-types.cc, oct-py-types.h (pytave::extract_py_uint64): New function. * __py_struct_from_dict__.cc (F__py_uint64_scalar_value__): New function. (F__py_int64_scalar_value__): Simplify and clean up style. Add %!tests. * @pyobject/pyobject.m (pyobject.single, pyobject.int8, pyobject.int16, pyobject.int32, pyobject.uint8, pyobject.uint16, pyobject.uint32, pyobject.uint64): New conversion methods.
author Mike Miller <mtmiller@octave.org>
date Fri, 26 Aug 2016 18:51:42 -0700
parents eec3ed1c0578
children d18843ff4dfd
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
103
d99739894a0b .hgignore: Create from .bzrignore
Mike Miller <mtmiller@octave.org>
parents: 8
diff changeset
1 syntax: regexp
175
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
2 # The recurrent (^|/) idiom in the regexps below should be understood
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
3 # to mean "at any directory" while the ^ idiom means "from the
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
4 # project's top-level directory".
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
5
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
6 (^|/).*\.pyc$
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
7 (^|/).*\.dvi$
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
8 (^|/).*\.pdf$
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
9 (^|/).*\.o$
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
10 (^|/).*\.oct$
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
11 (^|/).*\.octlink$
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
12 (^|/)octave-core$
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
13 (^|/).*\.tar\.gz$
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
14 (^|/).*\.html
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
15
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
16 # some common files that the geometry package deals with
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
17 # and are rarely meant to be actually committed
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
18 (^|/).*\.png
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
19 (^|/).*\.svg
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
20 (^|/).*\.eps
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
21 (^|/).*\.fig
103
d99739894a0b .hgignore: Create from .bzrignore
Mike Miller <mtmiller@octave.org>
parents: 8
diff changeset
22
175
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
23 (^|/)m4
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
24 (^|/)aclocal\.m4$
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
25 (^|/).*\.in$
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
26 (^|/).*\.guess$
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
27 (^|/).*\.sub$
251
c8da556b6793 maint: add more file patterns to .hgignore
Mike Miller <mtmiller@octave.org>
parents: 175
diff changeset
28 (^|/)Makefile
175
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
29 (^|/)depcomp
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
30 (^|/)missing
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
31 (^|/)install-sh
251
c8da556b6793 maint: add more file patterns to .hgignore
Mike Miller <mtmiller@octave.org>
parents: 175
diff changeset
32 (^|/)libtool
175
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
33 (^|/)ltmain.sh
251
c8da556b6793 maint: add more file patterns to .hgignore
Mike Miller <mtmiller@octave.org>
parents: 175
diff changeset
34 (^|/)stamp-h1
175
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
35
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
36
251
c8da556b6793 maint: add more file patterns to .hgignore
Mike Miller <mtmiller@octave.org>
parents: 175
diff changeset
37 (^|/)config\.h$
c8da556b6793 maint: add more file patterns to .hgignore
Mike Miller <mtmiller@octave.org>
parents: 175
diff changeset
38 (^|/)config\.log$
c8da556b6793 maint: add more file patterns to .hgignore
Mike Miller <mtmiller@octave.org>
parents: 175
diff changeset
39 (^|/)config\.status$
175
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
40 (^|/)configure$
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
41 (^|/)autom4te\.cache($|/)
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
42
251
c8da556b6793 maint: add more file patterns to .hgignore
Mike Miller <mtmiller@octave.org>
parents: 175
diff changeset
43 (^|/)\.deps
c8da556b6793 maint: add more file patterns to .hgignore
Mike Miller <mtmiller@octave.org>
parents: 175
diff changeset
44 (^|/)\.libs
c8da556b6793 maint: add more file patterns to .hgignore
Mike Miller <mtmiller@octave.org>
parents: 175
diff changeset
45
354
eec3ed1c0578 build: generate PKG_ADD and PKG_DEL files from DEFUN_DLD declarations
Mike Miller <mtmiller@octave.org>
parents: 251
diff changeset
46 (^|/)PKG_(ADD|DEL)
251
c8da556b6793 maint: add more file patterns to .hgignore
Mike Miller <mtmiller@octave.org>
parents: 175
diff changeset
47 (^|/)octave-workspace
c8da556b6793 maint: add more file patterns to .hgignore
Mike Miller <mtmiller@octave.org>
parents: 175
diff changeset
48
175
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
49 # e.g. doc/faq/OctaveFAQ.info
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
50 # doc/interpreter/octave.info-4
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
51 ^doc/.*\.info(-\d)?$
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
52
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
53 ^doc/\w*/stamp-vti$
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
54 ^doc/\w*/stamp-vti$
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
55
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
56 ^doc/latex
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
57 ^doc/html
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
58 ^doc/.*\.db$
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
59
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
60 # Emacs tools create these
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
61 (^|/)TAGS$
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
62 (^|/)semantic.cache$
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
63
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
64 # Other text editors often create these
a7d597726985 doc: doxygen config file and documentation
Juan Pablo Carbajal <ajuanpi+dev@gmail.com>
parents: 163
diff changeset
65 (^|/).*~$