Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/sugar/date.py
diff options
context:
space:
mode:
authorMike C. Fletcher <mcfletch@raistlin.(none)>2007-04-10 02:47:37 (GMT)
committer Mike C. Fletcher <mcfletch@raistlin.(none)>2007-04-10 02:47:37 (GMT)
commit3f10890319aa00fcefa58380e9971a911c9ec5b0 (patch)
tree25e2889a740e36fe776b083a250d15585d32a463 /sugar/date.py
parent508a59b99bf06bd6c3294a296ee014b5636bbd35 (diff)
Docstrings for modules all over sugar and shell.
These are just the doc strings I created as I was spelunking through to see how Sugar manages launching applications. The resulting auto-documentation is neither polished or finished, but it should help people reading the code somewhat. There are a few minor code cleanups: * activityhandle (replacing C idiom for initialisation with a Python one) * bundle registry (using a parameterised directory name so that it shows up in the documentation) * validate_activity_id function, use isinstance( item, (str,unicode)) for the query, rather than two separate checks with isinstance
Diffstat (limited to 'sugar/date.py')
-rw-r--r--sugar/date.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/sugar/date.py b/sugar/date.py
index 331124b..2894a87 100644
--- a/sugar/date.py
+++ b/sugar/date.py
@@ -1,10 +1,25 @@
+"""Simple date-representation model"""
import datetime
class Date(object):
+ """Date-object storing a simple time.time() float
+
+ XXX not sure about the rationale for this class,
+ possibly it makes transfer over dbus easier?
+ """
def __init__(self, timestamp):
+ """Initialise via a timestamp (floating point value)"""
self._timestamp = timestamp
def __str__(self):
+ """Produce a formatted date representation
+
+ Eventually this should produce a localised version
+ of the date. At the moment it always produces English
+ dates in long form with Today and Yesterday
+ special-cased and dates from this year not presenting
+ the year in the date.
+ """
date = datetime.date.fromtimestamp(self._timestamp)
today = datetime.date.today()