From 8d5fd4ed5c0a9e48d7a0a154ebab3ef57f91c5a6 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Thu, 2 Apr 2009 01:03:26 +0000 Subject: [PATCH] add SEEK_ constants to _pyio --- Lib/_pyio.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Lib/_pyio.py b/Lib/_pyio.py index 334c2b7e05..66cdc20a0e 100644 --- a/Lib/_pyio.py +++ b/Lib/_pyio.py @@ -14,6 +14,7 @@ except ImportError: import io from io import __all__ +from io import SEEK_SET, SEEK_CUR, SEEK_END # open() uses st_blksize whenever we can DEFAULT_BUFFER_SIZE = 8 * 1024 # bytes -- 2.40.0