summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2005-01-16 08:40:58 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2005-01-16 08:40:58 (GMT)
commit22b457e03bf5123c0a407e245567bee940de7cd5 (patch)
treee69e429e178317e7a41b05d9d69a928fd17cf0ac /Doc
parent5a8a03784e56e5931b4cdb3946494f8d15c72bd2 (diff)
downloadcpython-22b457e03bf5123c0a407e245567bee940de7cd5.zip
cpython-22b457e03bf5123c0a407e245567bee940de7cd5.tar.gz
cpython-22b457e03bf5123c0a407e245567bee940de7cd5.tar.bz2
Added SEEK_* constants. Fixes #711830.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/lib/libos.tex9
1 files changed, 9 insertions, 0 deletions
diff --git a/Doc/lib/libos.tex b/Doc/lib/libos.tex
index b1c06b1..995e432 100644
--- a/Doc/lib/libos.tex
+++ b/Doc/lib/libos.tex
@@ -636,6 +636,15 @@ These can be bit-wise OR'd together.
Availability: Windows.
\end{datadesc}
+\begin{datadesc}{SEEK_SET}
+\dataline{SEEK_CUR}
+\dataline{SEEK_END}
+Parameteters to the \function{lseek()} function.
+Their values are 0, 1, and 2, respectively.
+Availability: Windows, Macintosh, \UNIX.
+\versionadded{2.5}
+\end{datadesc}
+
\subsection{Files and Directories \label{os-file-dir}}
\begin{funcdesc}{access}{path, mode}