summaryrefslogtreecommitdiffstats
path: root/doc/html/RM_H5S.html
diff options
context:
space:
mode:
authorFrank Baker <fbaker@hdfgroup.org>1999-12-17 15:45:31 (GMT)
committerFrank Baker <fbaker@hdfgroup.org>1999-12-17 15:45:31 (GMT)
commitc85c62fcd0cb10ba15bc04360234c14b92ed8e80 (patch)
tree6966c89c0a28b56f91e63da6020baee777de66f1 /doc/html/RM_H5S.html
parentd15a2ce142e4e50dde23505c54711fbe3ffa42de (diff)
downloadhdf5-c85c62fcd0cb10ba15bc04360234c14b92ed8e80.zip
hdf5-c85c62fcd0cb10ba15bc04360234c14b92ed8e80.tar.gz
hdf5-c85c62fcd0cb10ba15bc04360234c14b92ed8e80.tar.bz2
[svn-r1893] RM_H5S.html
H5Sselect_hyperslab, H5Sget_select_elem_pointlist, H5Sget_select_bounds: Inserted missing punctuation and missing space between words. H5Sget_simple_extent_dims: Added statement that either or both of 'dims' and 'maxdims' may be NULL.
Diffstat (limited to 'doc/html/RM_H5S.html')
-rw-r--r--doc/html/RM_H5S.html11
1 files changed, 7 insertions, 4 deletions
diff --git a/doc/html/RM_H5S.html b/doc/html/RM_H5S.html
index 721822d..4c8cbf3 100644
--- a/doc/html/RM_H5S.html
+++ b/doc/html/RM_H5S.html
@@ -540,6 +540,9 @@ of the <cite>HDF5 User's Guide.</cite>.
<dd><code>H5Sget_simple_extent_dims</code> returns the size and maximum sizes
of each dimension of a dataspace through the <code>dims</code>
and <code>maxdims</code> parameters.
+ <p>
+ Either or both of <code>dims</code> and <code>maxdims</code>
+ may be NULL.
<dt><strong>Parameters:</strong>
<dl>
<dt><em>hid_t</em> <code>space_id</code>
@@ -819,9 +822,9 @@ of the <cite>HDF5 User's Guide.</cite>.
<dt><strong>Name:</strong> <a name="Dataspace-SelectHyperslab">H5Sselect_hyperslab</a>
<dt><strong>Signature:</strong>
<dd><em>herr_t</em> <code>H5Sselect_hyperslab</code>(<em>hid_t</em> <code>space_id</code>,
- <em>H5S_seloper_t</em><code>op</code>,
+ <em>H5S_seloper_t</em> <code>op</code>,
<em>const hssize_t *</em><code>start</code>,
- <em>const hsize_t *</em><code>stride</code>
+ <em>const hsize_t *</em><code>stride</code>,
<em>const hsize_t *</em><code>count</code>,
<em>const hsize_t *</em><code>block</code>
)
@@ -1053,7 +1056,7 @@ I/O is performed.
<dl>
<dt><strong>Name:</strong> <a name="Dataspace-SelectElemPointList">H5Sget_select_elem_pointlist</a>
<dt><strong>Signature:</strong>
- <dd><em>herr_t </em><code>H5Sget_select_elem_pointlist</code>(<em>hid_t </em><code>space_id</code>
+ <dd><em>herr_t </em><code>H5Sget_select_elem_pointlist</code>(<em>hid_t </em><code>space_id</code>,
<em>hsize_t </em><code>startpoint</code>,
<em>hsize_t </em><code>numpoints</code>,
<em>hsize_t *</em><code>buf</code>
@@ -1113,7 +1116,7 @@ I/O is performed.
<dl>
<dt><strong>Name:</strong> <a name="Dataspace-SelectBounds">H5Sget_select_bounds</a>
<dt><strong>Signature:</strong>
- <dd><em>herr_t </em><code>H5Sget_select_bounds</code>(<em>hid_t </em><code>space_id</code>
+ <dd><em>herr_t </em><code>H5Sget_select_bounds</code>(<em>hid_t </em><code>space_id</code>,
<em>hsize_t *</em><code>start</code>,
<em>hsize_t *</em><code>end</code>
)
commitgraph'>| | | * | | Fix issue 6706: adds new handle_accepted() method to asyncore.dispatcherGiampaolo Rodolà2010-10-045-13/+32 | | | * | | Remove the debugging print line from the test.Senthil Kumaran2010-10-041-1/+0 | | | * | | Fix Issue10012 - httplib headers, which are (sometimes mistakenly) int are ↵Senthil Kumaran2010-10-031-0/+9 | | | | | | | | | | | | explicitly cast to str (bytes - in py3k). * | | Fix Issue9272 - Change CGIHTTPServer to give the child program a copy of ↵Senthil Kumaran2010-10-031-0/+8 | | | | | | | | | | | | os.environ * | | add a test and a note about metaclasses now being abcsBenjamin Peterson2010-10-021-0/+13 | | | * | | Make the printing of sqlite version in verbose mode work with regrtest -w.R. David Murray2010-10-021-6/+8 | | | * | | Issue #8670: Rename testcapi unicode test methodsVictor Stinner2010-10-021-11/+11 | | | | | | | | | | | | | | | * test_aswidechar() => unicode_aswidechar() * test_aswidecharstring() => unicode_aswidecharstring() * | | Oops, revert unwanted _testcapi changes of r85174Victor Stinner2010-10-021-11/+11 | | | * | | Issue #8670: ctypes.c_wchar supports non-BMP characters with 32 bits wchar_tVictor Stinner2010-10-021-11/+11 | | | * | | Issue #8670: PyUnicode_AsWideChar() and PyUnicode_AsWideCharString() replaceVictor Stinner2010-10-021-0/+20 | | | | | | | | | | | | | | | UTF-16 surrogate pairs by single non-BMP characters for 16 bits Py_UNICODE and 32 bits wchar_t (eg. Linux in narrow build). * | | Issue #8870: PyUnicode_AsWideCharString() doesn't count the trailing nul ↵Victor Stinner2010-10-021-0/+39 | | | | | | | | | | | | | | | | | | character And write unit tests for PyUnicode_AsWideChar() and PyUnicode_AsWideCharString(). * | | type.__abstractmethods__ should raise an AttributeError #10006Benjamin Peterson2010-10-021-0/+7 | | | * | | Fix #10003. Add SIGBREAK to the set of valid signals on Windows.Brian Curtin2010-10-011-6/+6 | | | | | | | | | | | | This fixes a regression noticed by bzr, introduced by issue #9324. * | | Issue #6608: time.asctime is now checking struct tm fields its inputAlexander Belopolsky2010-10-011-17/+23 | | | | | | | | | | | | before passing it to the system asctime. Patch by MunSic Jeong. * | | Issue1491 - BaseHTTPServer incorrectly implements response code 100Senthil Kumaran2010-09-301-0/+98 | | | * | | Issue #9599: Further accuracy tweaks to loghelper. For an integer n that's ↵Mark Dickinson2010-09-291-2/+9 | | | | | | | | | | | | small enough to be converted to a float without overflow, log(n) is now computed as log(float(n)), and similarly for log10. * | | Add testcases from bug report #9980.Mark Dickinson2010-09-291-0/+5 | | | * | | test_imp: getfilesystemencoding() cannot be None anymoreVictor Stinner2010-09-291-1/+0 | | | | | | | | | | | | And the codec name is normalized. * | | Fix NNTP when there's a ".netrc" fileAntoine Pitrou2010-09-291-1/+2 | | | * | | Disable the usenetrc option when testing nntplibAntoine Pitrou2010-09-291-1/+2 | | | * | | Issue #9360: Cleanup and improvements to the nntplib module. The APIAntoine Pitrou2010-09-291-0/+1091 | | | | | | | | | | | | | | | now conforms to the philosophy of bytes and unicode separation in Python 3. A test suite has also been added. * | | Fix #9978. WINFUNCTYPE is from ctypes, not from ctypes.wintypes.Brian Curtin2010-09-291-2/+2 | | | | | | | | | | | | | | | r85073 changed the importing in wintypes to not use *, so the previous usage here became even more incorrect. * | | Issue #9962: GzipFile now has the peek() method.Antoine Pitrou2010-09-291-0/+22 | | | * | | Have test_sqlite print version info when run in verbose mode.R. David Murray2010-09-29