| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 822db86 commit 46d7761
25 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -79,7 +79,7 @@ Doc/library/time.rst @pganssle @abalkin | |||
| 79 | 79 | Lib/test/test_time.py @pganssle @abalkin | |
| 80 | 80 | Modules/timemodule.c @pganssle @abalkin | |
| 81 | 81 | Python/pytime.c @pganssle @abalkin | |
| 82 | - Include/pytime.h @pganssle @abalkin | ||
| 82 | + Include/internal/pycore_time.h @pganssle @abalkin | ||
| 83 | 83 | ||
| 84 | 84 | # Email and related | |
| 85 | 85 | **/*mail* @python/email-team | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -602,3 +602,6 @@ Removed | |||
| 602 | 602 | use ``PyObject_Vectorcall()`` which is available since Python 3.8 | |
| 603 | 603 | (:pep:`590`). | |
| 604 | 604 | (Contributed by Victor Stinner in :gh:`106023`.) | |
| 605 | + | ||
| 606 | + * Remove ``cpython/pytime.h`` header file: it only contained private functions. | ||
| 607 | + (Contributed by Victor Stinner in :gh:`106316`.) | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -83,7 +83,6 @@ | |||
| 83 | 83 | #include "weakrefobject.h" | |
| 84 | 84 | #include "structseq.h" | |
| 85 | 85 | #include "cpython/picklebufobject.h" | |
| 86 | - #include "cpython/pytime.h" | ||
| 87 | 86 | #include "codecs.h" | |
| 88 | 87 | #include "pyerrors.h" | |
| 89 | 88 | #include "pythread.h" | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -5,6 +5,8 @@ | |||
| 5 | 5 | extern "C" { | |
| 6 | 6 | #endif | |
| 7 | 7 | ||
| 8 | + #include "pycore_time.h" // _PyTime_t | ||
| 9 | + | ||
| 8 | 10 | ||
| 9 | 11 | struct _import_runtime_state { | |
| 10 | 12 | /* The builtin modules (defined in config.c). */ | |
| Back | FazBrowse Home | New Git URL |
0 commit comments