From 2ef9adc49267bdea403ac3d7e7e4f11c7bd19947 Mon Sep 17 00:00:00 2001 From: Hanno Schlichting Date: Sun, 12 Aug 2012 11:44:10 +0200 Subject: [PATCH] move docs into readme --- README.rst | 6 ++++++ src/Record/__init__.py | 8 -------- 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/README.rst b/README.rst index 0fac123..1dbc029 100644 --- a/README.rst +++ b/README.rst @@ -2,3 +2,9 @@ Overview ======== Record provides special objects used in some Zope2 internals like ZRDB. + +Records are used to provide compact storage for catalog query results. + +They don't use instance dictionaries. Rather, they store they data in +a compact array internally. They use a record schema to map names to +positions within the array. diff --git a/src/Record/__init__.py b/src/Record/__init__.py index b954530..866aaf6 100644 --- a/src/Record/__init__.py +++ b/src/Record/__init__.py @@ -11,14 +11,6 @@ # FOR A PARTICULAR PURPOSE. # ############################################################################## -"""Records - -Records are used to provide compact storage for database query result rows. - -They don't use instance dictionaries. Rather, they store they data in -a compact array internally. They use a record schema to map names to -positions within the array. -""" _marker = object()