Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCristhofer Travieso <cristhofert97@gmail.com>2012-08-22 00:35:06 (GMT)
committer Cristhofer Travieso <cristhofert97@gmail.com>2012-08-22 00:35:06 (GMT)
commitc5e3134bd574f55f6f3749a2dcc04f71384309b0 (patch)
treeaa3efd16601a45aec6d4853b489c693b2a9dce03
parent3b3cf2bd64159a5a130dfa8212718f9489c35eae (diff)
add values
-rw-r--r--convert.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/convert.py b/convert.py
index d35039a..6c120a1 100644
--- a/convert.py
+++ b/convert.py
@@ -85,7 +85,11 @@ time = {'day': (1, 1), 'Week': (7, 0.14285714285714285),
'Year': (365.25, 0.0027378507871321013),
'Hour': (0.041666666666666664, 24),
'Minute': (0.0006944444444444445, 1440),
- 'Second': (0.000011574074074074073, 86400)
+ 'Second': (0.000011574074074074073, 86400),
+ 'Millisecond': (1.1574074074074074e-8, 86400000),
+ 'Microsecond': (1.1574074074074074e-11, 86400000000),
+ 'Nanosecond': (1.1574074074074075e-14, 86400000000000),
+ 'Picosecond': (1.1574074074074074e-17, 86400000000000000),
}