diff options
author | Jesus Cea <jcea@jcea.es> | 2012-06-22 16:32:07 (GMT) |
---|---|---|
committer | Jesus Cea <jcea@jcea.es> | 2012-06-22 16:32:07 (GMT) |
commit | 9436361e4cdd7d3dc5f42674b54995c4915afb59 (patch) | |
tree | 18ecfd666aa3101811f6e79a5ca883293917a88b /Lib/os.py | |
parent | ff493c9c465ba9502629bf5001f690068be97f33 (diff) | |
download | cpython-9436361e4cdd7d3dc5f42674b54995c4915afb59.zip cpython-9436361e4cdd7d3dc5f42674b54995c4915afb59.tar.gz cpython-9436361e4cdd7d3dc5f42674b54995c4915afb59.tar.bz2 |
Closes #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
@@ -121,6 +121,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 |