@@ -11,15 +11,15 @@ def timesince(d, now=None, count=2, accuracy=6, simple=False):
1111 This function has a number of optional arguments that can be combined:
1212
1313 SIMPLE: displays the time in a simple format
14- >>> timesince(SECONDS)
14+ >> timesince(SECONDS)
1515 1 hour, 2 minutes and 34 seconds
16- >>> timesince(SECONDS, simple=True)
16+ >> timesince(SECONDS, simple=True)
1717 1h 2m 34s
1818
1919 COUNT: how many periods should be shown (default 3)
20- >>> timesince(SECONDS)
20+ >> timesince(SECONDS)
2121 147 years, 9 months and 8 weeks
22- >>> timesince(SECONDS, count=6)
22+ >> timesince(SECONDS, count=6)
2323 147 years, 9 months, 7 weeks, 18 hours, 12 minutes and 34 seconds
2424 """
2525
@@ -67,15 +67,15 @@ def format_time(seconds, count=3, accuracy=6, simple=False):
6767 This function has a number of optional arguments that can be combined:
6868
6969 SIMPLE: displays the time in a simple format
70- >>> format_time(SECONDS)
70+ >> format_time(SECONDS)
7171 1 hour, 2 minutes and 34 seconds
72- >>> format_time(SECONDS, simple=True)
72+ >> format_time(SECONDS, simple=True)
7373 1h 2m 34s
7474
7575 COUNT: how many periods should be shown (default 3)
76- >>> format_time(SECONDS)
76+ >> format_time(SECONDS)
7777 147 years, 9 months and 8 weeks
78- >>> format_time(SECONDS, count=6)
78+ >> format_time(SECONDS, count=6)
7979 147 years, 9 months, 7 weeks, 18 hours, 12 minutes and 34 seconds
8080 """
8181
0 commit comments