Commit 932bb8b1 authored by Guido van Rossum's avatar Guido van Rossum

Docstring: correct offset and record length calculations if vlen==0.

parent fa52cfe1
...@@ -63,9 +63,11 @@ records of the form: ...@@ -63,9 +63,11 @@ records of the form:
31+dlen+vlen+vdlen: vserial -- 8-byte version serial (timestamp) 31+dlen+vlen+vdlen: vserial -- 8-byte version serial (timestamp)
(if vlen > 0) (if vlen > 0)
27+dlen (if vlen == 0) **or**
39+dlen+vlen+vdlen: tlen -- 4-byte (unsigned) record length (for 39+dlen+vlen+vdlen: tlen -- 4-byte (unsigned) record length (for
redundancy and backward traversal) redundancy and backward traversal)
31+dlen (if vlen == 0) **or**
43+dlen+vlen+vdlen: -- total record length (equal to tlen) 43+dlen+vlen+vdlen: -- total record length (equal to tlen)
There is a cache size limit. There is a cache size limit.
...@@ -97,7 +99,7 @@ with '\0\0\0\0'. ...@@ -97,7 +99,7 @@ with '\0\0\0\0'.
If var is not writable, then temporary files are used for If var is not writable, then temporary files are used for
file 0 and file 1. file 0 and file 1.
$Id: ClientCache.py,v 1.34 2002/09/04 18:09:14 jeremy Exp $ $Id: ClientCache.py,v 1.35 2002/09/06 02:37:57 gvanrossum Exp $
""" """
import os import os
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment