index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Modules
/
_datetimemodule.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
closes bpo-39736: const strings in Modules/_datetimemodule.c and Modules/_tes...
Andy Lester
2020-02-24
1
-3/+3
*
bpo-39573: Clean up modules and headers to use Py_IS_TYPE() function (GH-18521)
Dong-hee Na
2020-02-17
1
-5/+5
*
bpo-39573: Use Py_TYPE() macro in Modules directory (GH-18393)
Victor Stinner
2020-02-07
1
-1/+1
*
bpo-39237, datetime: Remove redundant call to round from delta_new (GH-17877)
Alex Henrie
2020-01-08
1
-1/+0
*
bpo-37994: Fix silencing all errors if an attribute lookup fails. (GH-15630)
Serhiy Storchaka
2019-09-01
1
-11/+10
*
bpo-37372: Fix error unpickling datetime.time objects from Python 2 with seco...
Justin Blanchard
2019-08-29
1
-1/+1
*
bpo-37915: Fix comparison between tzinfo objects and timezone objects (GH-15390)
Pablo Galindo
2019-08-22
1
-1/+2
*
bpo-37642: Update acceptable offsets in timezone (GH-14878)
Ngalim Siregar
2019-08-09
1
-2/+9
*
bpo-37685: Fixed comparisons of datetime.timedelta and datetime.timezone. (GH...
Serhiy Storchaka
2019-08-04
1
-5/+2
*
bpo-37547: add _PyObject_CallMethodOneArg (GH-14685)
Jeroen Demeyer
2019-07-11
1
-9/+6
*
bpo-37337: Add _PyObject_CallMethodNoArgs() (GH-14267)
Jeroen Demeyer
2019-07-08
1
-5/+5
*
bpo-37194: Add a new public PyObject_CallNoArgs() function (GH-13890)
Victor Stinner
2019-06-17
1
-5/+5
*
bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (G...
Jeroen Demeyer
2019-05-31
1
-14/+13
*
bpo-36004: Add date.fromisocalendar (GH-11888)
Paul Ganssle
2019-04-29
1
-0/+67
*
bpo-36025: Fix PyDate_FromTimestamp API (GH-11922)
Paul Ganssle
2019-04-27
1
-1/+18
*
bpo-32417: Make timedelta arithmetic respect subclasses (#10902)
Paul Ganssle
2019-02-04
1
-4/+6
*
bpo-35066: _dateime.datetime.strftime copies trailing '%' (GH-10692)
MichaelSaah
2019-01-14
1
-5/+8
*
bpo-22005: Fix condition for unpickling a date object. (GH-11025)
Serhiy Storchaka
2018-12-07
1
-1/+1
*
bpo-22005: Fixed unpickling instances of datetime classes pickled by Python 2...
Serhiy Storchaka
2018-12-07
1
-91/+174
*
bpo-33012: Fix invalid function cast warnings with gcc 8. (GH-6749)
Serhiy Storchaka
2018-11-27
1
-10/+10
*
bpo-35059: Cleanup usage of Python macros (GH-10648)
Victor Stinner
2018-11-22
1
-79/+87
*
bpo-35021: Fix assertion failures in _datetimemodule.c. (GH-10039)
Serhiy Storchaka
2018-11-20
1
-48/+51
*
bpo-35081: Remove Py_BUILD_CORE from datetime.h (GH-10416)
Paul Ganssle
2018-11-13
1
-8/+21
*
bpo-35133: Fix mistakes when concatenate string literals on different lines. ...
Serhiy Storchaka
2018-11-05
1
-1/+1
*
bpo-34454: Clean up datetime.fromisoformat surrogate handling (GH-8959)
Paul Ganssle
2018-10-22
1
-72/+93
*
Elaborate datetime.timedelta docstring (GH-7458)
Chris Barker
2018-10-19
1
-1/+5
*
Migrate datetime.date.fromtimestamp to Argument Clinic (GH-8535)
Tim Hoffmann
2018-09-24
1
-17/+20
*
closes bpo-34471: _datetime: Add missing NULL check to tzinfo_from_isoformat_...
Alexey Izbyshev
2018-08-24
1
-1/+4
*
bpo-34454: fix .fromisoformat() methods crashing on inputs with surrogate cod...
Paul Ganssle
2018-08-23
1
-9/+72
*
bpo-29097: Forego fold detection on windows for low timestamp values (GH-2385)
Ammar Askar
2018-07-25
1
-1/+16
*
bpo-33812: Corrected astimezone for naive datetimes. (GH-7578)
Alexander Belopolsky
2018-06-10
1
-0/+11
*
bpo-33012: Fix invalid function cast warnings with gcc 8 for METH_NOARGS. (GH...
Siddhesh Poyarekar
2018-04-29
1
-21/+21
*
Fix duplicating words words. (GH-6296)
Serhiy Storchaka
2018-03-28
1
-1/+1
*
bpo-32746: Fix multiple typos (GH-5144)
Leo Arias
2018-02-04
1
-1/+1
*
bpo-10381: Add timezone to datetime C API (#5032)
Paul Ganssle
2018-01-24
1
-0/+3
*
bpo-32403: Faster date and datetime constructors (#4993)
Paul Ganssle
2018-01-16
1
-45/+75
*
bpo-29240: Fix locale encodings in UTF-8 Mode (#5170)
Victor Stinner
2018-01-15
1
-1/+1
*
bpo-15873: Implement [date][time].fromisoformat (#4699)
Paul Ganssle
2017-12-21
1
-0/+353
*
bpo-23699: Use a macro to reduce boilerplate code in rich comparison function...
stratakis
2017-11-02
1
-16/+1
*
bpo-31752: Fix possible crash in timedelta constructor called with custom int...
Serhiy Storchaka
2017-10-23
1
-2/+7
*
Refactor multiplication and division of timedelta and float. (#3656)
Serhiy Storchaka
2017-10-04
1
-41/+10
*
bpo-31293: Fix crashes in truediv and mul of a timedelta by a float with a ba...
Oren Milman
2017-09-19
1
-4/+33
*
bpo-31338 (#3374)
Barry Warsaw
2017-09-15
1
-2/+1
*
Closes issue bpo-5288: Allow tzinfo objects with sub-minute offsets. (#2896)
Alexander Belopolsky
2017-07-31
1
-27/+30
*
bpo-30302 Make timedelta.__repr__ more informative. (#1493)
Utkarsh Upadhyay
2017-07-25
1
-15/+44
*
bpo-29953: Fix memory leaks in the replace() method of datetime and time (#927)
Serhiy Storchaka
2017-03-31
1
-11/+10
*
bpo-29878: Add global instances of int for 0 and 1. (#852)
Serhiy Storchaka
2017-03-30
1
-5/+3
*
Merge 3.6
Victor Stinner
2017-02-10
1
-21/+40
|
\
|
*
Fix datetime.fromtimestamp(): check bounds
Victor Stinner
2017-02-10
1
-21/+40
*
|
Merge 3.6
Victor Stinner
2017-01-03
1
-5/+5
|
\
\
|
|
/
[next]