diff options
author | Jesus Cea <jcea@jcea.es> | 2012-04-26 14:39:35 (GMT) |
---|---|---|
committer | Jesus Cea <jcea@jcea.es> | 2012-04-26 14:39:35 (GMT) |
commit | 2b47f0a23ffcb0cd86dc9eacf379fbd329b895c7 (patch) | |
tree | e7a04c686ef2b72e9d4495b88e8f87c58cfd5e11 /Lib/os.py | |
parent | 790a9b4c193a9f3323138a8c1c1d074a6b6289f0 (diff) | |
download | cpython-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.py | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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 |