Closes #10142: Support for SEEK_HOLE/SEEK_DATA

This commit is contained in:
Jesus Cea 2012-06-22 18:32:07 +02:00
parent ff493c9c46
commit 9436361e4c
9 changed files with 71 additions and 12 deletions

View file

@ -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