From 7505d8d985459f4050a9cd720f0a9b8fb516e639 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sat, 25 Sep 2010 16:49:21 -0400 Subject: [PATCH] Adding docstrings for pylint coverage. --- tablib/core.py | 2 +- tablib/formats/_csv.py | 3 +++ tablib/formats/_json.py | 3 +++ tablib/formats/_xls.py | 3 +++ tablib/formats/_yaml.py | 5 +++++ 5 files changed, 15 insertions(+), 1 deletion(-) diff --git a/tablib/core.py b/tablib/core.py index fb9861a..168d664 100644 --- a/tablib/core.py +++ b/tablib/core.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- -""" Tablib - core. +""" Tablib - Core Library. """ from tablib.formats import formats diff --git a/tablib/formats/_csv.py b/tablib/formats/_csv.py index 6dba44b..8b19da7 100644 --- a/tablib/formats/_csv.py +++ b/tablib/formats/_csv.py @@ -1,5 +1,8 @@ # -*- coding: utf-8 -*- +""" Tablib - CSV Support. +""" + import cStringIO import csv import os diff --git a/tablib/formats/_json.py b/tablib/formats/_json.py index c2dd524..1f92b58 100644 --- a/tablib/formats/_json.py +++ b/tablib/formats/_json.py @@ -1,5 +1,8 @@ # -*- coding: utf-8 -*- +""" Tablib - JSON Support +""" + import simplejson as json import tablib.core diff --git a/tablib/formats/_xls.py b/tablib/formats/_xls.py index 979fa62..1a739af 100644 --- a/tablib/formats/_xls.py +++ b/tablib/formats/_xls.py @@ -1,5 +1,8 @@ # -*- coding: utf-8 -*- +""" Tablib - XLS Support. +""" + import xlwt import cStringIO diff --git a/tablib/formats/_yaml.py b/tablib/formats/_yaml.py index 665e06d..4cac8aa 100644 --- a/tablib/formats/_yaml.py +++ b/tablib/formats/_yaml.py @@ -1,8 +1,13 @@ # -*- coding: utf-8 -*- +""" Tablib - YAML Support. +""" + import yaml import tablib + + title = 'yaml' extentions = ('yaml', 'yml')