commit | 2b47f0a23ffcb0cd86dc9eacf379fbd329b895c7 | [log] [tgz] |
---|---|---|
author | Jesus Cea <jcea@jcea.es> | Thu Apr 26 16:39:35 2012 +0200 |
committer | Jesus Cea <jcea@jcea.es> | Thu Apr 26 16:39:35 2012 +0200 |
tree | e7a04c686ef2b72e9d4495b88e8f87c58cfd5e11 | |
parent | 790a9b4c193a9f3323138a8c1c1d074a6b6289f0 [diff] [blame] |
Close #10142: Support for SEEK_HOLE/SEEK_DATA
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 @@ # 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