diff options
author | Fred Drake <fdrake@acm.org> | 1998-04-11 20:53:03 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1998-04-11 20:53:03 (GMT) |
commit | ee60191d1d318684a896794faad9ccbcfe9bd254 (patch) | |
tree | 6f56860916156f1d59f0f8159e55882648a8d9ad /Doc/lib/libposixfile.tex | |
parent | 17e564042d8eccfd571ef898709d1454727741be (diff) | |
download | cpython-ee60191d1d318684a896794faad9ccbcfe9bd254.zip cpython-ee60191d1d318684a896794faad9ccbcfe9bd254.tar.gz cpython-ee60191d1d318684a896794faad9ccbcfe9bd254.tar.bz2 |
Lighten up tables.
Diffstat (limited to 'Doc/lib/libposixfile.tex')
-rw-r--r-- | Doc/lib/libposixfile.tex | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/lib/libposixfile.tex b/Doc/lib/libposixfile.tex index 570a79b..a1f853d 100644 --- a/Doc/lib/libposixfile.tex +++ b/Doc/lib/libposixfile.tex @@ -102,7 +102,7 @@ All methods raise \exception{IOError} when the request fails. Format characters for the \method{lock()} method have the following meaning: -\begin{tableii}{|c|l|}{samp}{Format}{Meaning} +\begin{tableii}{c|l}{samp}{Format}{Meaning} \lineii{u}{unlock the specified region} \lineii{r}{request a read lock for the specified section} \lineii{w}{request a write lock for the specified section} @@ -110,7 +110,7 @@ meaning: In addition the following modifiers can be added to the format: -\begin{tableiii}{|c|l|c|}{samp}{Modifier}{Meaning}{Notes} +\begin{tableiii}{c|l|c}{samp}{Modifier}{Meaning}{Notes} \lineiii{|}{wait until the lock has been granted}{} \lineiii{?}{return the first lock conflicting with the requested lock, or \code{None} if there is no conflict.}{(1)} @@ -126,7 +126,7 @@ request from being granted; it is for query purposes only. Format characters for the \method{flags()} method have the following meanings: -\begin{tableii}{|c|l|}{samp}{Format}{Meaning} +\begin{tableii}{c|l}{samp}{Format}{Meaning} \lineii{a}{append only flag} \lineii{c}{close on exec flag} \lineii{n}{no delay flag (also called non-blocking flag)} @@ -135,7 +135,7 @@ meanings: In addition the following modifiers can be added to the format: -\begin{tableiii}{|c|l|c|}{samp}{Modifier}{Meaning}{Notes} +\begin{tableiii}{c|l|c}{samp}{Modifier}{Meaning}{Notes} \lineiii{!}{turn the specified flags 'off', instead of the default 'on'}{(1)} \lineiii{=}{replace the flags, instead of the default 'OR' operation}{(1)} \lineiii{?}{return a string in which the characters represent the flags that |