Browse Source

Datetime fix

pull/28/head
Jure Šorn 5 years ago
parent
commit
6bed9731b3
1 changed files with 2 additions and 2 deletions
  1. 4
      README.md

4
README.md

@ -457,7 +457,7 @@ from itertools import product, combinations, combinations_with_replacement, perm
Datetime
--------
* **Module Datetime provides Date (`'<D>'`), Time (`'<T>'`) and Datetime (`'<DT>'`) classes.**
* **Time and Datetime can be 'aware' (`'<a>'`), meaning they have defined timezone, or 'naive' (`'<n>'`), meaning they don't.
* **Time and Datetime can be 'aware' (`'<a>'`), meaning they have defined timezone, or 'naive' (`'<n>'`), meaning they don't.**
```python
$ pip3 install pytz
@ -473,7 +473,7 @@ import pytz
<TD> = timedelta(days=0, seconds=0, microseconds=0, milliseconds=0, minutes=0, hours=0, weeks=0)
```
* **`'fold=1'` means second pass in case of time jumping back for one hour.**
* **Use `'<D/DT>.weekday()'` to get day of the week (Mon == 0).
* **Use `'<D/DT>.weekday()'` to get day of the week (Mon == 0).**
### Now
```python

Loading…
Cancel
Save