summaryrefslogtreecommitdiffstats
path: root/Lib/os.py
diff options
context:
space:
mode:
authorJesus Cea <jcea@jcea.es>2012-04-26 14:39:35 (GMT)
committerJesus Cea <jcea@jcea.es>2012-04-26 14:39:35 (GMT)
commit2b47f0a23ffcb0cd86dc9eacf379fbd329b895c7 (patch)
treee7a04c686ef2b72e9d4495b88e8f87c58cfd5e11 /Lib/os.py
parent790a9b4c193a9f3323138a8c1c1d074a6b6289f0 (diff)
downloadcpython-2b47f0a23ffcb0cd86dc9eacf379fbd329b895c7.zip
cpython-2b47f0a23ffcb0cd86dc9eacf379fbd329b895c7.tar.gz
cpython-2b47f0a23ffcb0cd86dc9eacf379fbd329b895c7.tar.bz2
Close #10142: Support for SEEK_HOLE/SEEK_DATA
Diffstat (limited to 'Lib/os.py')
-rw-r--r--Lib/os.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/os.py b/Lib/os.py
index 2c7d954..2403f30 100644
--- a/Lib/os.py
+++ b/Lib/os.py
@@ -116,6 +116,7 @@ del _names
# Python uses fixed values for the SEEK_ constants; they are mapped
# to native constants if necessary in posixmodule.c
+# Other possible SEEK values are directly imported from posixmodule.c
SEEK_SET = 0
SEEK_CUR = 1
SEEK_END = 2