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
*
Fix the refleak in strftime when converting a %Z with a user defined tzinfo.
Neal Norwitz
2007-08-12
1
-32/+39
*
Fix refcount bug in make_Zreplacement().
Guido van Rossum
2007-08-10
1
-0/+1
*
Fix merge breakage.
Martin v. Löwis
2007-07-21
1
-6/+6
*
Merged revisions 56467-56482 via svnmerge from
Martin v. Löwis
2007-07-21
1
-26/+21
*
Change Py_BuildValue to generate Unicode objects for
Martin v. Löwis
2007-07-18
1
-23/+27
*
Revert r56044 (which changed the %c format specifier to accept a
Walter Dörwald
2007-07-01
1
-1/+1
*
Change %c format specifier for PyArg_ParseTuple() so that it accepts
Walter Dörwald
2007-06-20
1
-1/+1
*
Change timedelta.__str__() to return a unicode object.
Walter Dörwald
2007-05-31
1
-36/+19
*
Change isoformat() methods to return unicode strings.
Walter Dörwald
2007-05-31
1
-48/+32
*
Change format_ctime() to return unicode (i.e.
Walter Dörwald
2007-05-31
1
-6/+4
*
Refactor to avoid ultra-deeply-nested code.
Guido van Rossum
2007-05-23
1
-36/+53
*
Fix datetime and its test.
Guido van Rossum
2007-05-23
1
-8/+21
*
Simplify append_keyword_tzinfo() by using
Walter Dörwald
2007-05-23
1
-10/+2
*
Merged revisions 55407-55513 via svnmerge from
Guido van Rossum
2007-05-22
1
-9/+9
*
Remove unused variables.
Walter Dörwald
2007-05-20
1
-1/+0
*
Add a format specifier %R to PyUnicode_FromFormat(), which embeds
Walter Dörwald
2007-05-19
1
-30/+20
*
Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror
Walter Dörwald
2007-05-18
1
-13/+13
*
Merged revisions 55325-55327 via svnmerge from
Guido van Rossum
2007-05-14
1
-0/+2
*
Fix some miscellaneous places that incorrectly insisted on str8.
Guido van Rossum
2007-05-10
1
-9/+13
*
Merged revisions 53952-54987 via svnmerge from
Guido van Rossum
2007-04-27
1
-0/+6
*
Merged revisions 53623-53858 via svnmerge from
Thomas Wouters
2007-02-23
1
-2/+2
*
Merged the int/long unification branch, by very crude means (sorry Thomas!).
Guido van Rossum
2007-01-14
1
-5/+2
*
Four months of trunk changes (including a few releases...)
Thomas Wouters
2006-12-13
1
-2/+2
*
- patch #1600346 submitted by Tomer Filiba
Jack Diederich
2006-11-28
1
-6/+6
*
Fix the datetime comparison conundrum.
Guido van Rossum
2006-08-24
1
-86/+47
*
Get rid of most of the flags (in tp_flags) that keep track of various
Guido van Rossum
2006-07-27
1
-10/+5
*
Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.
Thomas Wouters
2006-05-27
1
-0/+7
*
Merge p3yk branch with the trunk up to revision 45595. This breaks a fair
Thomas Wouters
2006-04-21
1
-15/+24
*
Get rid of remnants of integer division
Neal Norwitz
2006-03-24
1
-5/+0
*
Finish getting rid of statichere/staticforward
Neal Norwitz
2006-03-22
1
-3/+3
*
More unconsting.
Martin v. Löwis
2006-02-27
1
-11/+11
*
Remove two instances of trailing commas. Resolves patch #1209781.
Georg Brandl
2006-02-19
1
-1/+1
*
Merge ssize_t branch.
Martin v. Löwis
2006-02-15
1
-2/+2
*
Check return result from Py_InitModule*(). This API can fail.
Neal Norwitz
2006-01-19
1
-0/+2
*
Add const to several API functions that take char *.
Jeremy Hylton
2005-12-10
1
-16/+16
*
similar to SF bug 847019: a quick check in the time() constructor, which
Armin Rigo
2005-11-07
1
-1/+2
*
Add strptime() constructor to datetime class. Thanks to Josh Spoerri for
Skip Montanaro
2005-01-13
1
-0/+45
*
Bug #1087216: datetime module documentation missing critical detail
Raymond Hettinger
2004-12-19
1
-3/+9
*
SF bug #1028306: date-datetime comparison
Tim Peters
2004-09-16
1
-1/+11
*
SF patch 876130: add C API to datetime module, from Anthony Tuininga.
Tim Peters
2004-06-20
1
-0/+30
*
Bug 975996: Add _PyTime_DoubleToTimet to C API
Tim Peters
2004-06-20
1
-5/+15
*
SF 952807: Unpickling pickled instances of subclasses of datetime.date,
Tim Peters
2004-06-07
1
-6/+3
*
SF bug 847019 datetime.datetime initialization needs more strict checking
Tim Peters
2004-03-21
1
-2/+10
*
Have strftime() check its time tuple argument to make sure the tuple's values
Brett Cannon
2004-03-02
1
-2/+2
*
Fix a bunch of typos in documentation, docstrings and comments.
Walter Dörwald
2003-10-20
1
-2/+2
*
Simplify and speedup uses of Py_BuildValue():
Raymond Hettinger
2003-10-12
1
-4/+4
*
SF bug #761337: datetime.strftime fails on trivial format string
Raymond Hettinger
2003-06-27
1
-1/+1
*
Added more words about the abuse of the tp_alloc nitems argument
Tim Peters
2003-05-18
1
-1/+12
*
datetime.timedelta is now subclassable in Python. The new test shows
Tim Peters
2003-05-17
1
-165/+170
*
datetime.datetime and datetime.time can now be subclassed in Python. Brr.
Tim Peters
2003-05-17
1
-30/+46
[next]