Adding docstrings for pylint coverage.

This commit is contained in:
Kenneth Reitz
2010-09-25 16:49:21 -04:00
parent d5515c17b8
commit 7505d8d985
5 changed files with 15 additions and 1 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
""" Tablib - core.
""" Tablib - Core Library.
"""
from tablib.formats import formats
+3
View File
@@ -1,5 +1,8 @@
# -*- coding: utf-8 -*-
""" Tablib - CSV Support.
"""
import cStringIO
import csv
import os
+3
View File
@@ -1,5 +1,8 @@
# -*- coding: utf-8 -*-
""" Tablib - JSON Support
"""
import simplejson as json
import tablib.core
+3
View File
@@ -1,5 +1,8 @@
# -*- coding: utf-8 -*-
""" Tablib - XLS Support.
"""
import xlwt
import cStringIO
+5
View File
@@ -1,8 +1,13 @@
# -*- coding: utf-8 -*-
""" Tablib - YAML Support.
"""
import yaml
import tablib
title = 'yaml'
extentions = ('yaml', 'yml')