diff options
author | Tim Peters <tim.peters@gmail.com> | 2004-06-20 22:41:32 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2004-06-20 22:41:32 (GMT) |
commit | 9ddf40b4e1f8875a807c026ef04e79f51debbe26 (patch) | |
tree | d26b253bf04e7b478b0f0649ff1e5692bc97c53f /Misc | |
parent | 873a277eb45439696b4862735dce28ffd29fab22 (diff) | |
download | cpython-9ddf40b4e1f8875a807c026ef04e79f51debbe26.zip cpython-9ddf40b4e1f8875a807c026ef04e79f51debbe26.tar.gz cpython-9ddf40b4e1f8875a807c026ef04e79f51debbe26.tar.bz2 |
SF patch 876130: add C API to datetime module, from Anthony Tuininga.
The LaTeX is untested (well, so is the new API, for that matter).
Note that I also changed NULL to get spelled consistently in concrete.tex.
If that was a wrong thing to do, Fred should yell at me.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/ACKS | 1 | ||||
-rw-r--r-- | Misc/NEWS | 4 |
2 files changed, 5 insertions, 0 deletions
@@ -569,6 +569,7 @@ Richard Townsend Laurence Tratt John Tromp Jason Trowbridge +Anthony Tuininga Stephen Turner Bill Tutt Doobee R. Tzeck @@ -559,6 +559,10 @@ Build C API ----- +- Thanks to Anthony Tuininga, the datetime module now supplies a C API + containing type-check macros and constructors. See new docs in the + Python/C API Reference Manual for details. + - Private function _PyTime_DoubleToTimet added, to convert a Python timestamp (C double) to platform time_t with some out-of-bounds checking. Declared in new header file timefuncs.h. It would be |