summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGiampaolo Rodola <g.rodola@gmail.com>2011-04-19 08:01:26 +0000
committerGiampaolo Rodola <g.rodola@gmail.com>2011-04-19 08:01:26 +0000
commita804c91d4689a21f7850b6e4e48c39e538ab3f1f (patch)
treea3ad3e893ecf012f454a84537702927b1d531ff2
parente27b39205f94702f73f1280b6773a9070e27e0da (diff)
downloadpysendfile-a804c91d4689a21f7850b6e4e48c39e538ab3f1f.tar.gz
typo
-rw-r--r--test/test_sendfile.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/test_sendfile.py b/test/test_sendfile.py
index b687398..7c67b86 100644
--- a/test/test_sendfile.py
+++ b/test/test_sendfile.py
@@ -358,7 +358,8 @@ class TestSendfile(unittest.TestCase):
if "linux" in sys.platform:
def test_offset_none(self):
- # on Linux offset == None is supposed to update file offset
+ # on Linux offset == None sendfile() call is supposed
+ # to update the file offset
while 1:
sent = sendfile_wrapper(self.sockno, self.fileno, None, 4096)
if sent == 0: