COMMITS
/ Objects/funcobject.c February 2, 2009
M
Issue #1717: rename tp_compare to tp_reserved. I'll change the
Mark Dickinson committed
August 7, 2008
M
Rename PyUnicode_AsString -> _PyUnicode_AsString and
Marc-André Lemburg committed
December 19, 2007
C
#1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.
Christian Heimes committed
November 27, 2007
November 25, 2007
C
Patch from Georg Brandl and me for #1493
Christian Heimes committed
November 17, 2007
C
Fixed some build issues and updated docs.
Christian Heimes committed
August 26, 2007
N
Use unicode and stop supporting str8
Neal Norwitz committed
July 21, 2007
M
Merged revisions 56467-56482 via svnmerge from
Martin v. Löwis committed
June 11, 2007
W
Simplify error formatting (no default encoding required).
Walter Dörwald committed
June 10, 2007
M
Make identifiers str (not str8) objects throughout.
Martin v. Löwis committed
May 18, 2007
W
Add functions PyUnicode_Append() and PyUnicode_AppendAndDel() that mirror
Walter Dörwald committed
May 17, 2007
G
Make test_new pass.
Guido van Rossum committed
May 14, 2007
G
Merged revisions 55270-55324 via svnmerge from
Guido van Rossum committed
February 26, 2007
G
Fix refleaks in function objects caused by kwdefaults not being allocated.
Georg Brandl committed
February 25, 2007
N
Change all the function attributes from func_* -> __*__. This gets rid
Neal Norwitz committed
December 28, 2006
N
PEP 3107 - Function Annotations thanks to Tony Lownds
Neal Norwitz committed
October 27, 2006
G
Jiwon Seo's PEP 3102 implementation.
Guido van Rossum committed
August 11, 2006
T
Merged revisions 46753-51188 via svnmerge from
Thomas Wouters committed
April 21, 2006
T
Merge p3yk branch with the trunk up to revision 45595. This breaks a fair
Thomas Wouters committed
February 27, 2006
M
Revert backwards-incompatible const changes.
Martin v. Löwis committed
February 21, 2006
G
Make staticmethod and classmethod complain about keyword args.
Georg Brandl committed
February 16, 2006
M
Revert 42400.
Martin v. Löwis committed
M
Support %zd in PyErr_Format and PyString_FromFormat.
Martin v. Löwis committed
N
Get rid of compiler warnings (gcc 3.3.4 on x86)
Neal Norwitz committed
February 15, 2006
M
Merge ssize_t branch.
Martin v. Löwis committed
December 10, 2005
J
Add const to several API functions that take char *.
Jeremy Hylton committed
October 20, 2005
J
Merge ast-branch to head
Jeremy Hylton committed
October 28, 2004
A
Wrote down the invariants of some common objects whose structure is
Armin Rigo committed
August 12, 2004
M
This is my patch
Michael W. Hudson committed
July 8, 2004
N
Remove unused macros in .c files
Neal Norwitz committed
March 23, 2004
M
Intern __name__.
Martin v. Löwis committed
June 18, 2003
R
SF bug #753451: classmethod abuse --> SystemError
Raymond Hettinger committed
May 6, 2003
R
SF bug #692959: new.function ignores keyword arguments
Raymond Hettinger committed
April 8, 2003
J
Make staticmethods and classmethods participate in GC.
Jeremy Hylton committed
February 18, 2003
G
Make __module__ writable except in restricted mode (like for classic classes).
Guido van Rossum committed
J
Make __module__ settable on functions and methods.
Jeremy Hylton committed
January 31, 2003
J
Provide __module__ attributes for functions defined in C and Python.
Jeremy Hylton committed
December 29, 2002
R
SF patch #659536: Use PyArg_UnpackTuple where possible.
Raymond Hettinger committed
July 11, 2002
J
Extend function() to support an optional closure argument.
Jeremy Hylton committed
June 14, 2002
G
SF patch 568629 by Oren Tirosh: types made callable.
Guido van Rossum committed
June 13, 2002
M
Patch #568124: Add doc string macros.
Martin v. Löwis committed
April 12, 2002
N
PyObject_Del can now be used as a function designator.
Neil Schemenauer committed
April 3, 2002
F
Fix the names of the classmethod and staticmethod constructors as passed to
Fred Drake committed
March 18, 2002
G
Fix for SF bug 528132 (Armin Rigo): classmethod().__get__() segfault
Guido van Rossum committed
December 17, 2001
S
Portability fix: Not every compiler implements the extension of
Sjoerd Mullender committed
G
SF patch #493452: docstrings for staticmethod/classmethod (Skip
Guido van Rossum committed
December 3, 2001
G
function_call(): Remove a bogus (and I mean *really* bogus) call to
Guido van Rossum committed
October 26, 2001
F
Be smarter about clearing the weakref lists for instances, instance methods,
Fred Drake committed
October 5, 2001
G
Enable GC for new-style instances. This touches lots of files, since
Guido van Rossum committed