Skip to content

Commit dd152ac

Browse files
author
Jeff Whitaker
committed
update docstrings to mention default fill values in netCDF4._default_fillvals (issue 94)
1 parent dfb33f7 commit dd152ac

16 files changed

Lines changed: 2548 additions & 2545 deletions

docs/class-tree.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ <h1 class="epydoc">Class Hierarchy</h1>
118118
<table border="0" cellpadding="0" cellspacing="0" width="100%%">
119119
<tr>
120120
<td align="left" class="footer">
121-
Generated by Epydoc 3.0.1 on Wed Jul 20 08:43:09 2011
121+
Generated by Epydoc 3.0.1 on Fri Jul 22 15:20:40 2011
122122
</td>
123123
<td align="right" class="footer">
124124
<a target="mainFrame" href="http://epydoc.sourceforge.net"

docs/help.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ <h2> The Navigation Bar </h2>
240240
<table border="0" cellpadding="0" cellspacing="0" width="100%%">
241241
<tr>
242242
<td align="left" class="footer">
243-
Generated by Epydoc 3.0.1 on Wed Jul 20 08:43:09 2011
243+
Generated by Epydoc 3.0.1 on Fri Jul 22 15:20:40 2011
244244
</td>
245245
<td align="right" class="footer">
246246
<a target="mainFrame" href="http://epydoc.sourceforge.net"

docs/identifier-index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -521,7 +521,7 @@ <h1 class="epydoc">Identifier Index</h1>
521521
<table border="0" cellpadding="0" cellspacing="0" width="100%%">
522522
<tr>
523523
<td align="left" class="footer">
524-
Generated by Epydoc 3.0.1 on Wed Jul 20 08:43:08 2011
524+
Generated by Epydoc 3.0.1 on Fri Jul 22 15:20:40 2011
525525
</td>
526526
<td align="right" class="footer">
527527
<a target="mainFrame" href="http://epydoc.sourceforge.net"

docs/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1504,7 +1504,7 @@ <h3 class="epydoc"><span class="sig"><span class="sig-name">stringtochar</span>(
15041504
<table border="0" cellpadding="0" cellspacing="0" width="100%%">
15051505
<tr>
15061506
<td align="left" class="footer">
1507-
Generated by Epydoc 3.0.1 on Wed Jul 20 08:43:09 2011
1507+
Generated by Epydoc 3.0.1 on Fri Jul 22 15:20:40 2011
15081508
</td>
15091509
<td align="right" class="footer">
15101510
<a target="mainFrame" href="http://epydoc.sourceforge.net"

docs/module-tree.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ <h1 class="epydoc">Module Hierarchy</h1>
7777
<table border="0" cellpadding="0" cellspacing="0" width="100%%">
7878
<tr>
7979
<td align="left" class="footer">
80-
Generated by Epydoc 3.0.1 on Wed Jul 20 08:43:09 2011
80+
Generated by Epydoc 3.0.1 on Fri Jul 22 15:20:40 2011
8181
</td>
8282
<td align="right" class="footer">
8383
<a target="mainFrame" href="http://epydoc.sourceforge.net"

docs/netCDF4-module.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1504,7 +1504,7 @@ <h3 class="epydoc"><span class="sig"><span class="sig-name">stringtochar</span>(
15041504
<table border="0" cellpadding="0" cellspacing="0" width="100%%">
15051505
<tr>
15061506
<td align="left" class="footer">
1507-
Generated by Epydoc 3.0.1 on Wed Jul 20 08:43:09 2011
1507+
Generated by Epydoc 3.0.1 on Fri Jul 22 15:20:40 2011
15081508
</td>
15091509
<td align="right" class="footer">
15101510
<a target="mainFrame" href="http://epydoc.sourceforge.net"

docs/netCDF4.CompoundType-class.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ <h3 class="epydoc"><span class="sig"><span class="sig-name">__new__</span>(<span
281281
<table border="0" cellpadding="0" cellspacing="0" width="100%%">
282282
<tr>
283283
<td align="left" class="footer">
284-
Generated by Epydoc 3.0.1 on Wed Jul 20 08:43:09 2011
284+
Generated by Epydoc 3.0.1 on Fri Jul 22 15:20:40 2011
285285
</td>
286286
<td align="right" class="footer">
287287
<a target="mainFrame" href="http://epydoc.sourceforge.net"

docs/netCDF4.Dataset-class.html

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1025,8 +1025,9 @@ <h3 class="epydoc"><span class="sig"><span class="sig-name">createVariable</span
10251025
for netCDF 3 files that do not use HDF5.</p>
10261026
<p>The optional keyword <code>fill_value</code> can be used to override
10271027
the default netCDF <code>_FillValue</code> (the value that the variable
1028-
gets filled with before any data is written to it). If fill_value is set
1029-
to <code>False</code>, then the variable is not pre-filled.</p>
1028+
gets filled with before any data is written to it, defaults given in
1029+
netCDF4._default_fillvals). If fill_value is set to <code>False</code>,
1030+
then the variable is not pre-filled.</p>
10301031
<p>If the optional keyword parameter <code>least_significant_digit</code>
10311032
is specified, variable data will be truncated (quantized). In conjunction
10321033
with <code>zlib=True</code> this produces 'lossy', but significantly more
@@ -1270,7 +1271,7 @@ <h3 class="epydoc">path</h3>
12701271
<table border="0" cellpadding="0" cellspacing="0" width="100%%">
12711272
<tr>
12721273
<td align="left" class="footer">
1273-
Generated by Epydoc 3.0.1 on Wed Jul 20 08:43:09 2011
1274+
Generated by Epydoc 3.0.1 on Fri Jul 22 15:20:40 2011
12741275
</td>
12751276
<td align="right" class="footer">
12761277
<a target="mainFrame" href="http://epydoc.sourceforge.net"

docs/netCDF4.Dimension-class.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ <h3 class="epydoc"><span class="sig"><span class="sig-name">__new__</span>(<span
292292
<table border="0" cellpadding="0" cellspacing="0" width="100%%">
293293
<tr>
294294
<td align="left" class="footer">
295-
Generated by Epydoc 3.0.1 on Wed Jul 20 08:43:09 2011
295+
Generated by Epydoc 3.0.1 on Fri Jul 22 15:20:40 2011
296296
</td>
297297
<td align="right" class="footer">
298298
<a target="mainFrame" href="http://epydoc.sourceforge.net"

docs/netCDF4.Group-class.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ <h3 class="epydoc"><span class="sig"><span class="sig-name">close</span>(<span c
347347
<table border="0" cellpadding="0" cellspacing="0" width="100%%">
348348
<tr>
349349
<td align="left" class="footer">
350-
Generated by Epydoc 3.0.1 on Wed Jul 20 08:43:09 2011
350+
Generated by Epydoc 3.0.1 on Fri Jul 22 15:20:40 2011
351351
</td>
352352
<td align="right" class="footer">
353353
<a target="mainFrame" href="http://epydoc.sourceforge.net"

0 commit comments

Comments
 (0)