From edd5a3efd901df68243372f46087d96d4fbf7715 Mon Sep 17 00:00:00 2001 From: Philip Sargent Date: Sat, 18 Jul 2020 16:23:54 +0100 Subject: Module documentation docstrings --- dump.py | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) (limited to 'dump.py') diff --git a/dump.py b/dump.py index 9206690..4464823 100644 --- a/dump.py +++ b/dump.py @@ -1,11 +1,15 @@ -# Mimic the sqlite3 console shell's .dump command -# Author: Paul Kippes +"""Used to create the SQL dump which mimics the import of cave and expo +data from files. -# Every identifier in sql is quoted based on a comment in sqlite -# documentation "SQLite adds new keywords from time to time when it -# takes on new features. So to prevent your code from being broken by -# future enhancements, you should normally quote any identifier that -# is an English language word, even if you do not have to." +Mimic the sqlite3 console shell's .dump command +Author: Paul Kippes + +Every identifier in sql is quoted based on a comment in sqlite +documentation "SQLite adds new keywords from time to time when it +takes on new features. So to prevent your code from being broken by +future enhancements, you should normally quote any identifier that +is an English language word, even if you do not have to." +""" def _iterdump(connection): """ -- cgit v1.2.3