From 9bb4068adc2e5d805b8ee933f1163586494a477c Mon Sep 17 00:00:00 2001 From: "Jason R. Coombs" Date: Sun, 17 Apr 2011 10:10:09 -0400 Subject: [PATCH] Updated docstrings --- svg/charts/__init__.py | 4 ++++ svg/charts/graph.py | 6 ++++++ 2 files changed, 10 insertions(+) diff --git a/svg/charts/__init__.py b/svg/charts/__init__.py index 97c8cb4..35c89cd 100644 --- a/svg/charts/__init__.py +++ b/svg/charts/__init__.py @@ -1,4 +1,8 @@ #!python # -*- coding: UTF-8 -*- +""" +svg.charts package. +""" + __all__ = ('graph', 'plot', 'time_series', 'bar', 'pie', 'schedule', 'util') diff --git a/svg/charts/graph.py b/svg/charts/graph.py index d56934c..21567ad 100644 --- a/svg/charts/graph.py +++ b/svg/charts/graph.py @@ -1,6 +1,12 @@ #!python # -*- coding: UTF-8 -*- +""" +svg.charts.graph + +The base module for `svg.charts` classes. +""" + from operator import itemgetter from itertools import islice import pkg_resources