summaryrefslogtreecommitdiff
path: root/Lib/os.py
diff options
context:
space:
mode:
authorJesus Cea <jcea@jcea.es>2012-04-26 16:39:35 +0200
committerJesus Cea <jcea@jcea.es>2012-04-26 16:39:35 +0200
commitf70b6cbfd343ebb618ca57f07dbc60d007da170c (patch)
treeee976366627fc00e737c9b72e33224e5127aa682 /Lib/os.py
parentd06969da47eef524bd2e9adf18fbed8638931f31 (diff)
downloadcpython-f70b6cbfd343ebb618ca57f07dbc60d007da170c.tar.gz
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 2c7d954864..2403f30c2f 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