Answers the current DateTime instance. >>> Dating(year=1900) < now() True >>> now() < Dating(year=2500) True
()
| 99 | return date |
| 100 | |
| 101 | def now(): |
| 102 | """Answers the current DateTime instance. |
| 103 | |
| 104 | >>> Dating(year=1900) < now() |
| 105 | True |
| 106 | >>> now() < Dating(year=2500) |
| 107 | True |
| 108 | """ |
| 109 | return Dating(date='now') |
| 110 | |
| 111 | def milliSeconds(milliSeconds): |
| 112 | """Answers the Duration instance for this amount of milliSeconds |