8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b14c8c commit 2eb3315Copy full SHA for 2eb3315
Modules/_datetimemodule.c
@@ -42,13 +42,13 @@
42
43
typedef struct {
44
/* Conversion factors. */
45
- PyObject *us_per_ms; // 1000
46
- PyObject *us_per_second; // 1000000
+ PyObject *us_per_ms; // 1_000
+ PyObject *us_per_second; // 1_000_000
47
PyObject *us_per_minute; // 1e6 * 60 as Python int
48
PyObject *us_per_hour; // 1e6 * 3600 as Python int
49
PyObject *us_per_day; // 1e6 * 3600 * 24 as Python int
50
- PyObject *us_per_week; // 1e6*3600*24*7 as Python int
51
- PyObject *seconds_per_day; // 3600*24 as Python int
+ PyObject *us_per_week; // 1e6 * 3600 * 24 * 7 as Python int
+ PyObject *seconds_per_day; // 3600 * 24 as Python int
52
53
/* The interned UTC timezone instance */
54
PyObject *PyDateTime_TimeZone_UTC;
0 commit comments