Update my email address.
[jelmer/subvertpy.git] / subvertpy / properties.py
index 0478523d75e98106a64069e242b644a900075c43..37f310c3cd52d11057b843e708b19b24acae0029 100644 (file)
@@ -1,4 +1,4 @@
-# Copyright (C) 2005-2007 Jelmer Vernooij <jelmer@samba.org>
+# Copyright (C) 2005-2007 Jelmer Vernooij <jelmer@jelmer.uk>
  
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU Lesser General Public License as published by
@@ -15,7 +15,7 @@
 
 """Handling of Subversion properties."""
 
-__author__ = "Jelmer Vernooij <jelmer@samba.org>"
+__author__ = "Jelmer Vernooij <jelmer@jelmer.uk>"
 __docformat__ = "restructuredText"
 
 import bisect, calendar, time, urlparse
@@ -42,7 +42,7 @@ def is_valid_property_name(prop):
 def time_to_cstring(timestamp):
     """Determine string representation of a time.
 
-    :param timestamp: Timestamp
+    :param timestamp: Number of microseconds since the start of 1970
     :return: string with date
     """
     tm_usec = timestamp % 1000000
@@ -55,7 +55,7 @@ def time_from_cstring(text):
     """Parse a time from a cstring.
     
     :param text: Parse text
-    :return: timestamp
+    :return: number of microseconds since the start of 1970
     """
     (basestr, usecstr) = text.split(".", 1)
     assert usecstr[-1] == "Z"